14 lines
397 B
HTML
14 lines
397 B
HTML
<article class="blog">
|
|
{{- partial "blog-header.html" (dict "headingLink" true "level" 2 "page" . ) }}
|
|
<section>
|
|
{{- if in .RawContent "<!--more--> " }}
|
|
{{ .Summary | safeHTML }}
|
|
{{- else }}
|
|
<p>{{ .Summary | safeHTML }}</p>
|
|
{{- end }}
|
|
{{- if .Truncated }}
|
|
<div class="morelink"><a href="{{ .RelPermalink }}">mehr...</a></div>
|
|
{{- end }}
|
|
</section>
|
|
</article>
|