30 lines
1003 B
HTML
30 lines
1003 B
HTML
{{- $title := .ctx.Title -}}
|
|
{{- $alt := .ctx.Params.alt -}}
|
|
{{- $description := .ctx.Params.description | markdownify -}}
|
|
{{- $keep := .keepOriginal -}}
|
|
{{- $href := .ctx.Params.href }}
|
|
|
|
<figure {{- with .class }} class="{{ . }}"{{- end -}}>
|
|
<a href="{{- with $href -}}{{ . }}{{ else }}{{ .ctx.Permalink }}{{ end }}"{{- with .lightbox }} data-lightbox{{- end -}}>
|
|
{{- partial "img.html" (dict "image" .image "ctx" .ctx "keepOriginal" $keep) -}}
|
|
</a>
|
|
<figcaption class="description">
|
|
{{- if .showTitle -}}
|
|
{{- if $href -}}
|
|
<a href="{{$href}}"><h3>{{ $title }}</h3></a>
|
|
{{- else -}}
|
|
<h3>{{ $title }}</h3>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- if .showDescription -}}
|
|
<p>
|
|
{{- with $description -}}
|
|
{{- . -}}
|
|
{{- else -}}
|
|
{{- $alt -}}
|
|
{{- end -}}
|
|
</p>
|
|
{{- end -}}
|
|
</figcaption>
|
|
</figure>
|