16 lines
573 B
HTML
16 lines
573 B
HTML
<article class="post-list">
|
|
<header class="post-header">
|
|
<h1 class="post-title{{ if .Params.favorite }} favorite{{end}}{{ if .Params.draft }} draft{{end}}"><a href="{{ .RelPermalink }}">{{ trim .Title " " }}</a></h1>
|
|
</header>
|
|
|
|
<div class="content post-summary">
|
|
{{ .Summary | safeHTML }}
|
|
</div>
|
|
{{ if and (.Truncated) (.Site.Params.readMore) }}
|
|
<div class="read-more">
|
|
<a href="{{ .RelPermalink }}">{{ i18n "readMore" | humanize }}</a>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ partial "postInfo.html" . }}
|
|
</article> |