6 lines
238 B
HTML
6 lines
238 B
HTML
|
{{- $img := ( .page.Resources.ByType "image").GetMatch "thumbnail.*" }}
|
||
|
{{- with $img }}
|
||
|
<figure class="post__thumbnail thumbnail">
|
||
|
<img class="thumbnail__img" src="{{ $img.RelPermalink }}" alt="{{ $img.Title }}">
|
||
|
</figure>
|
||
|
{{- end }}
|