hugo-theme-termlite/layouts/_default/page_summary.html

13 lines
518 B
HTML

<article class="page-summary">
<header class="page-summary__heading">
<h2 class="page-summary__title"><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></h2>
</header>
{{ if (.Params.rendersSummary | default true) -}}
{{ with .Description }}
<div class="page-summary__content">{{ . | markdownify }}</div>
{{ end }}
{{- end }}
{{ with .Date }}
<time class="page-summary__date" datetime="{{ . | time.Format "2006-01-02" }}">{{ . | time.Format ":date_medium" }}</time>
{{ end }}
</article>