mpercivalxyz

this website!
Log | Files | Refs

img.html (780B)


      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 <div class="img-row-container">
      9   <figure {{ with .Get "class" }}class="{{.}}"{{ end -}}>
     10       {{- with .Get "link"}}<a href="{{.}}">{{ end -}}
     11       <img src="{{ .Get "src" }}"
     12            {{- with .Get "mouse" }} title="{{.}}"{{ end -}}
     13            {{- with .Get "alt" }} alt="{{.}}"{{ end -}}
     14            {{- with .Get "width" }} width="{{.}}"{{ end -}}
     15            {{- with .Get "height" }} height="{{.}}"{{ end -}}
     16       >
     17       {{- if .Get "link"}}</a>{{ end -}}
     18       {{- with .Get "caption" -}}
     19       <figcaption>
     20       {{- . -}}
     21       </figcaption>
     22       {{- end -}}
     23   </figure>
     24 </div>