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.
19 lines
481 B
HTML
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 }}
|