Make title, content, and button optional

This commit is contained in:
pintergreg 2025-02-19 12:44:58 +01:00
parent e3e2b8d867
commit 9abdfd5630

View File

@ -3,10 +3,16 @@
<img src="{{ .thumb }}" alt="" />
</a>
<div class="caption">
<h3>{{ .title }}</h3>
<p>{{ .content }}</p>
{{ with .title }}
<h3>{{ . }}</h3>
{{ end }}
{{ with .content }}
<p>{{ . }}</p>
{{ end }}
{{ with .button }}
<ul class="actions fixed">
<li><span class="button small">{{ .button }}</span></li>
<li><span class="button small">{{ . }}</span></li>
</ul>
{{ end }}
</div>
</article>