hugo-theme-termlite/layouts/blog/list.html
Eryn Wells edd6eb996b A more generic tag/value component
Write styles and templates for a more generic tag/value component. Use this component
for the taxonomy lists, draft tag, and page dates in the summary template.
2024-10-12 10:45:52 -07:00

19 lines
481 B
HTML

{{ define "main" }}
<main class="main--list">
<header class="page-header">
{{ partial "page_header.html" (dict "page" .) }}
</header>
{{- with .Content }}
<div class="main--list__content">{{ . }}</div>
{{ end -}}
<div class="main--list__page-list">
{{ range .Pages.ByDate.Reverse -}}
{{ if or (not .Draft) hugo.IsDevelopment }}
{{ .Render "page_summary" }}
{{ end }}
{{- end }}
</div>
</main>
{{ end }}