lorenzocesana.xyz

Source code of my website, built with HUGO
Log | Files | Refs

img.html (657B)


      1 <!--
      2 	class: class of the figure
      3 	link: url the image directs to
      4 	alt: alternative text
      5 	caption: caption
      6 	mouse: what the image says when moused over ("title" in HTML)
      7 -->
      8 <figure {{ with .Get "class" }}class="{{.}}"{{ end -}}>
      9 	{{- with .Get "link"}}<a href="{{.}}">{{ end -}}
     10 	<img src="{{ .Get "src" }}"
     11 	     {{- with .Get "mouse" }} title="{{.}}"{{ end -}}
     12 	     {{- with .Get "alt" }} alt="{{.}}"{{ end -}}
     13 	     {{- with .Get "width" }} width="{{.}}"{{ end -}}
     14 	     {{- with .Get "height" }} height="{{.}}"{{ end -}}
     15 	>
     16 	{{- if .Get "link"}}</a>{{ end -}}
     17 	{{- with .Get "caption" -}}
     18 	<figcaption>
     19 	{{- . -}}
     20 	</figcaption>
     21 	{{- end -}}
     22 </figure>