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

39 lines
876 B
HTML

{{ partial "header" . }}
<a id="top"></a>
<main class="list h-entry">
<header>
<h1 class="p-name" id="header">
<svg class='icon'><use xlink:href="#{{ .Params.icontag }}"></use></svg>&nbsp;{{ .Title }}
</h1>
</header>
<article>
{{ .Content }}
</article>
<article>
<small>
{{ range .Pages.GroupByDate "2006" "desc" }}
{{ if ne .Key "0001" }}
<h2>{{ .Key }}</h2>
{{ range .Pages.GroupByDate "Jan" }}
<ul class="small">
{{ range .Pages.ByDate.Reverse }}
<li class="flexgrid flexgrid-8020">
<span><a href="{{ .RelPermalink }}">{{ .Title }}</a></span>
<small>
<time datetime='{{ .Date.Format "2006-01-02" }}'>{{ .Date.Format ("02 Jan 2006") }}</time>
</small>
</li>
{{ end }}
</ul>
{{ end }}
{{ end }}
{{ end }}
</small>
</article>
</main>
{{ partial "footer" . }}