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

19 lines
659 B
HTML
Raw Normal View History

2024-06-28 09:10:55 -07:00
<article class="page-summary">
<hgroup>
<h2><a href="{{ .Permalink }}">{{ .LinkTitle | markdownify }}</a></h2>
{{ if and (.Params.rendersSummary | default true) -}}
{{ with .Description }}
<p>{{ . | markdownify }}</p>
{{ end }}
{{ end }}
</hgroup>
{{- if .Date -}}
{{- partial "page/date.html" (dict "page" .) -}}
{{- end }}
{{- if ne hugo.Environment "production" -}}
{{ partial "page/taxonomy_draft.html" (dict "page" .) }}
{{- end -}}
{{ partial "page/taxonomy_list.html" (dict "page" . "taxonomy" "categories") }}
{{ partial "page/taxonomy_list.html" (dict "page" . "taxonomy" "tags") }}
2024-06-28 09:10:55 -07:00
</article>