hugo-story/layouts/partials/picture.html

19 lines
446 B
HTML
Raw Normal View History

2021-01-31 17:57:51 +01:00
<article>
<a href="{{ .image }}" class="image">
<img src="{{ .thumb }}" alt="" />
</a>
<div class="caption">
{{ with .title }}
<h3>{{ . }}</h3>
{{ end }}
{{ with .content }}
<p>{{ . }}</p>
{{ end }}
{{ with .button }}
2021-01-31 17:57:51 +01:00
<ul class="actions fixed">
<li><span class="button small">{{ . }}</span></li>
2021-01-31 17:57:51 +01:00
</ul>
{{ end }}
2021-01-31 17:57:51 +01:00
</div>
</article>