brainbaking/themes/brainbaking-minimal/layouts/_default/list.html

51 lines
966 B
HTML

{{ partial "header" . }}
{{ partial "bigimg" . }}
<a id="top"></a>
<main class="list">
{{ if .Title }}
<header>
<h1>
<svg class='icon'><use xlink:href="#{{ .Params.icontag }}"></use></svg>&nbsp;{{ .Title }}
</h1>
{{ if isset .Params "subtitle" }}
<h2>{{ .Params.subtitle }}</h2>
{{ end }}
</header>
{{ end }}
<hr/>
<article>
{{ .Content }}
</article>
<article>
<small>
{{ range .Pages.GroupByDate "2006" "desc" }}
{{ if ne .Key "0001" }}
<h2>{{ .Key }}</h2>
{{ range .Pages.GroupByDate "Jan" }}
<ul class="smallist">
{{ range .Pages.ByDate.Reverse }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
<span style="color: gray;">{{ .Date.Format ("02 Jan") }}</span>
</li>
{{ end }}
</ul>
{{ end }}
{{ end }}
{{ end }}
</small>
</article>
<footer>
</footer>
</main>
{{ partial "footer" . }}