1
Fork 0
theorangeone.net-legacy/layouts/shortcodes/resource.html
2019-12-22 22:32:59 +00:00

20 lines
592 B
HTML

{{ $original := .Page.Resources.GetMatch (.Get "src") }}
{{ $options := default "1000x" (.Get "options") }}
{{ .Scratch.Set "image" ($original.Resize $options) }}
{{ define "img" }}
{{ $image := .Scratch.Get "image" }}
<img src='{{ $image.RelPermalink }}' class='{{ .Get "class" }}' alt="{{ .Inner | plainify }}" style="max-width: 60%;" />
{{ end }}
{{ if .Inner }}
<figure class="text-center">
{{ template "img" . }}
<figcaption class="text-center">
<small>{{ .Inner | markdownify }}</small>
</figcaption>
</figure>
{{ else }}
{{ template "img" . }}
{{ end }}