thrrgilag.net/themes/binario/layouts/partials/post_thumbnail.html
Morgan McMillian 022c04d286 new site theme
2019-09-07 12:40:58 -07:00

13 lines
444 B
HTML

{{- $img := (.page.Resources.ByType "image").GetMatch "thumbnail.*" }}
{{- $link := .link }}
{{- with $img }}
<figure class="post__thumbnail thumbnail">
{{- with $link }}
<a class="thumbnail__link" href="{{ . }}">
<img class="thumbnail__img" src="{{ $img.RelPermalink }}" alt="{{ $img.Title }}">
</a>
{{- else }}
<img class="thumbnail__img" src="{{ $img.RelPermalink }}" alt="{{ $img.Title }}">
{{- end }}
</figure>
{{- end }}