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

17 lines
639 B
HTML
Raw Normal View History

2024-06-28 09:10:55 -07:00
<article class="page-summary">
<header class="page-summary__heading">
<h2 class="page-summary__title"><a href="{{ .Permalink }}">{{ .LinkTitle | markdownify }}</a></h2>
2024-06-28 09:10:55 -07:00
</header>
{{ if (.Params.rendersSummary | default true) -}}
{{ with .Description }}
<div class="page-summary__content">{{ . | markdownify }}</div>
{{ end }}
{{- end }}
{{- if ne hugo.Environment "production" -}}
{{ partial "page/taxonomy_draft.html" (dict "page" . "class" "page-summary__draft") }}
{{- end -}}
{{- if .Date -}}
{{- partial "page/date.html" (dict "page" . "class" "page-summary__date") -}}
{{- end }}
2024-06-28 09:10:55 -07:00
</article>