archetypes
content
static
themes
hugo-theme-ipng
archetypes
assets
data
layouts
_default
archives.html
baseof.html
list.html
rss.xml
single.html
partials
shortcodes
taxonomy
404.html
home.html
static
LICENSE.md
README.md
theme.toml
.drone.yml
.gitattributes
.gitignore
config.toml
30 lines
646 B
HTML
30 lines
646 B
HTML
|
|
{{ define "main" }}
|
|
<main>
|
|
|
|
{{- with .Title }}
|
|
<h1 class="page-title">{{ . }}</h1>
|
|
{{- end }}
|
|
|
|
{{ with (where site.RegularPages "Type" "in" site.Params.mainSections) }}
|
|
{{- $byyear := (where . ".Draft" false).GroupByDate "2006" -}}
|
|
|
|
{{- range $byyear -}}
|
|
<h2>{{ .Key }}</h2>
|
|
|
|
<ul>
|
|
{{ range.Pages }}
|
|
<li> <time>{{ .Date.Format "2/1" }}</time>
|
|
<span> - </span>
|
|
<a href="{{ .Permalink }}">
|
|
<span>{{ .Title }}</span>
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{- end -}}
|
|
{{ end }}
|
|
|
|
</main>
|
|
{{ end }}
|