23 lines
597 B
HTML
23 lines
597 B
HTML
|
{{ define "main-class" }}--section layouts-default-section{{ end }}
|
||
|
|
||
|
{{ define "main-header" }}
|
||
|
<header class="site-content__header">
|
||
|
<h2 class="page-title">{{ .Title | safeHTML }}.
|
||
|
{{ range .AlternativeOutputFormats -}}
|
||
|
<a href="{{ .RelPermalink }}">
|
||
|
<img class="feed-icon" src="{{ $.Site.Params.feedIcon }}">
|
||
|
</a>
|
||
|
{{ end }}
|
||
|
</h2>
|
||
|
{{ .Content }}
|
||
|
|
||
|
<nav class="page-header__minor-links">
|
||
|
{{ partial "years-list.html" . }}
|
||
|
</nav>
|
||
|
</header>
|
||
|
{{ end }}
|
||
|
|
||
|
{{ define "main-body" }}
|
||
|
{{ partial "items-grid.html" . }}
|
||
|
{{ end }}
|