You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.6 KiB
43 lines
1.6 KiB
{{ if .Get "caption" }}
|
|
{{ $.Scratch.Set "caption" (.Get "caption") }}
|
|
{{ else if .Get "alt" }}
|
|
{{ $.Scratch.Set "caption" (.Get "alt") }}
|
|
{{ end }}
|
|
<!-- resolve absolute image path -->
|
|
{{ $permalink := $.Page.Permalink }}
|
|
{{ $image := .Get "src" }}
|
|
{{ $image_link_absolute := (findRE "^/" $image) }}
|
|
<figure {{ with .Get "class" }}class="{{.}}"{{ end }}>
|
|
{{ if .Get "link"}}
|
|
<a href="{{ .Get "link" }}"
|
|
{{ with .Get "target" }} target="{{ . }}"{{ end }}
|
|
{{ with .Get "rel" }} rel="{{ . }}"{{ end }}>
|
|
{{ end }}
|
|
<img
|
|
{{ if $image_link_absolute }}
|
|
src="{{ $image | absURL }}"
|
|
{{ else }}
|
|
src="{{ (printf "%s%s" $permalink $image) }}"
|
|
{{ end }}
|
|
{{ if .Get "alt" }}alt="{{ .Get "alt" | markdownify | plainify }}"
|
|
{{ else if .Get "caption" }}alt="{{ .Get "caption" | markdownify | plainify }}"
|
|
{{ end }}
|
|
{{ with .Get "align" }}align="{{ . }}"{{ end }}
|
|
{{ with .Get "height" }}width="{{ . }}"{{ end }}
|
|
{{ with .Get "width" }}width="{{ . }}"{{ end }} style="max-width: 100%;"
|
|
/>
|
|
{{ if .Get "link"}}</a>{{ end }}
|
|
<!-- caption and attr-->
|
|
{{ if ($.Scratch.Get "caption") }}
|
|
<figcaption>
|
|
<span class="img--caption">
|
|
Figure {{ $.Page.Scratch.Get "fig" }}. {{ $.Scratch.Get "caption" | markdownify | plainify }}
|
|
{{ if .Get "attr" }}
|
|
[{{- with .Get "attrlink"}}<a href="{{ . }}">{{ end }}{{ .Get "attr" | markdownify }}{{ if .Get "attrlink"}}</a>{{ end -}}]
|
|
{{ end }}
|
|
</span>
|
|
</figcaption>
|
|
{{ end }}
|
|
</figure>
|
|
{{ .Page.Scratch.Add "fig" 1 }}
|
|
{{ $.Scratch.Delete "caption"}}
|
|
|