mirror of
https://github.com/caressofsteel/hugo-story.git
synced 2025-03-01 02:51:16 +01:00
19 lines
446 B
HTML
19 lines
446 B
HTML
<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 }}
|
|
<ul class="actions fixed">
|
|
<li><span class="button small">{{ . }}</span></li>
|
|
</ul>
|
|
{{ end }}
|
|
</div>
|
|
</article>
|