26 lines
705 B
HTML
26 lines
705 B
HTML
{{ define "title" }}
|
|
{{ .Type | singularize }}: ‘{{ .Page.Title | plainify }}’ | {{ .Site.Title }}
|
|
{{ end }}
|
|
|
|
{{ define "main-class" }}--list{{ end}}
|
|
|
|
{{ define "main-header" }}
|
|
<header class="site-content__header">
|
|
<h1 class="page-title">{{ .Type | singularize }}: <q>{{ .Title | safeHTML }}</q>
|
|
{{ range .AlternativeOutputFormats -}}
|
|
<a href="{{ .RelPermalink }}">
|
|
<img class="feed-icon" src="/images/feed-icon.png">
|
|
</a>
|
|
{{ end }}
|
|
</h1>
|
|
{{ .Content }}
|
|
|
|
<nav class="page-header__minor-links">
|
|
{{ partial "years-list.html" . }}
|
|
</nav>
|
|
</header>
|
|
{{ end }}
|
|
|
|
{{ define "main-body" }}
|
|
{{ partial "items-grid.html" . }}
|
|
{{ end }}
|