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.
5 lines
261 B
HTML
5 lines
261 B
HTML
{{ if or hugo.IsDevelopment .Draft }}
|
|
{{ 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") }}
|