mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
12 lines
533 B
HTML
12 lines
533 B
HTML
{{- if .Title | and .Text -}}
|
|
<figure>
|
|
{{- dict "Src" .Destination "Alt" .Text "Caption" .Text "Title" .Title "Linked" true "Responsive" true | partial "plugin/image.html" -}}
|
|
<figcaption class="image-caption">
|
|
{{- .Text | safeHTML -}}
|
|
</figcaption>
|
|
</figure>
|
|
{{- else -}}
|
|
{{- $linked := (eq (partial "function/params.html").lightgallery "force") | or (ne .Title "") -}}
|
|
{{- dict "Src" .Destination "Alt" .Text "Title" .Title "Linked" $linked "Responsive" true | partial "plugin/image.html" -}}
|
|
{{- end -}}
|