hugo-theme-anubis2/layouts/partials/postSummary.html

16 lines
505 B
HTML
Raw Normal View History

2020-06-06 21:05:21 +02:00
<article class="post-list">
<header>
<h1 class="post-title{{ if .Params.favorite }} favorite{{end}}"><a href="{{ .RelPermalink }}">{{ trim .Title " " }}</a></h1>
</header>
<div class="content post-summary">
{{ .Summary | safeHTML }}
</div>
<!-- {{ if .Truncated }}
<div class="read-more">
<a href="{{ .RelPermalink }}">{{ i18n "readMore" | humanize }}</a>
</div>
{{ end }} -->
{{ partial "postInfoFull.html" . }}
</article>