ccchh-website/themes/ccchh/layouts/_default/summary.html

14 lines
397 B
HTML
Raw Normal View History

<article class="blog">
2023-10-08 17:38:54 +02:00
{{- 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>
2023-10-27 00:08:07 +02:00
</article>