sandvich.xyz/layouts/partials/post.html

15 lines
388 B
HTML

<div class="post-item">
<h1>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h1>
{{ if (eq .Section "posts") }}
{{ partial "post-info-small.html" . }}
{{ end }}
{{ if (and .Truncated (gt (len .Summary) 0) .Truncated) }}
<p>
{{ .Summary }}
<a href="{{ .RelPermalink }}">(read more)</a>
</p>
{{ end }}
</div>