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

39 lines
798 B
HTML

{{ partial "header" . }}
<a id="top"></a>
<main class="list">
<header>
<h1 id="header" class="p-name">
<svg class='icon'><use xlink:href="#{{ .Params.icontag }}"></use></svg>&nbsp;{{ .Title }}
</h1>
</header>
{{ with .Content }}
<article>
{{ . }}
</article>
{{ end }}
<div class="tootlist txtblock">
{{ range (where .Data.Pages ".Params.type" "ne" "archive").GroupByDate "2006" "desc" }}
<h2>{{ .Key }}</h2>
{{ range .Pages.GroupByDate "January" }}
<h3>{{ .Key }}</h3>
{{ range .Pages.ByDate.Reverse }}
<small>
{{ partial "toot" . }}
</small>
{{ end }}
{{ end }}
{{ end }}
</div>
</main>
<div class="belowsingle">
<div class="txtblock">
{{ partial "single-comments" . }}
</div>
</div>
{{ partial "footer" . }}