2023-12-15 12:23:25 +00:00
|
|
|
<figure class="tsc-image">
|
2023-10-25 12:38:54 +00:00
|
|
|
{{ with .Get "href" }}
|
|
|
|
<a href="{{ . }}">
|
|
|
|
{{ end }}
|
|
|
|
<img
|
2023-12-15 12:23:25 +00:00
|
|
|
{{ with .Get "alt" }}alt="{{ . }}"{{ end }}
|
2023-10-25 12:38:54 +00:00
|
|
|
{{- $filename := .Get "src" }}
|
|
|
|
{{ $resource := .Page.Resources.Get $filename -}}
|
|
|
|
src="{{ $resource.RelPermalink }}"
|
2023-12-15 12:23:25 +00:00
|
|
|
style="
|
2024-02-05 19:54:16 +00:00
|
|
|
{{- with .Get "width" -}}max-width: min(90%, {{.}}px);{{- end -}}
|
2023-12-15 12:23:25 +00:00
|
|
|
"
|
2023-10-25 12:38:54 +00:00
|
|
|
>
|
|
|
|
{{ with .Get "href" }}
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ with .Get "caption" }}
|
|
|
|
<figcaption>
|
|
|
|
{{ . }}
|
|
|
|
</figcaption>
|
|
|
|
{{ end }}
|
|
|
|
</figure>
|