mirror of
https://github.com/loikein/hugo-tufte.git
synced 2024-11-15 12:56:57 +01:00
41 lines
882 B
HTML
41 lines
882 B
HTML
{{ define "main" }}
|
|
|
|
<div id="layout" class="pure-g">
|
|
<article class="pure-u-1">
|
|
|
|
{{ partial "brand.html" . }}
|
|
{{ partial "content.header.html" . }}
|
|
|
|
<section class="list-page">
|
|
{{ range .Data.Pages.GroupByDate "2006" }}
|
|
<ul>
|
|
<li class="year">{{ .Key }} ({{ len .Pages }})</li>
|
|
{{ range .Pages.GroupByDate "January" }}
|
|
<ul>
|
|
<li>{{ .Key }} ({{ len .Pages }})</li>
|
|
{{ range .Pages }}
|
|
<ul>
|
|
<li>
|
|
<span class="list-date">
|
|
{{ if .Site.Params.dateFormatShort }}
|
|
{{ .Date.Format .Site.Params.dateFormatShort }}
|
|
{{ else }}
|
|
{{ .Date.Format "Jan 2" }}
|
|
{{ end }} ·</span>
|
|
<a href="{{ .RelPermalink }}">{{.Title}}</a>
|
|
</li>
|
|
</ul>
|
|
{{ end }}
|
|
</li>
|
|
</ul>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
</section>
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
</article>
|
|
</div>
|
|
|
|
{{ end }}
|