This repository has been archived on 2024-11-01. You can view files and clone it, but cannot push or open issues or pull requests.
blog/themes/kiera/layouts/partials/featured_image.html

8 lines
188 B
HTML
Raw Normal View History

2024-10-28 16:26:25 -05:00
{{if isset .Params "images" }}
<div class="featured_image">
<a href="{{ .Permalink }}" title="{{ .Title }}">
<img src="{{ index .Params.images 0 }}">
</a>
</div>
{{ end }}