theme/layouts/_default/list.html

26 lines
684 B
HTML
Raw Normal View History

2019-02-12 18:38:42 +00:00
{{ partial "header.html" . }}
2022-01-29 17:19:41 +00:00
<div class="max-w-screen-xl flex mx-auto lg:pt-8 flex-col lg:flex-row">
<div class="w-full lg:w-1/4">
{{ partial "menu" . }}
</div>
<article class="w-full lg:w-3/4 p-4 pt-6 lg:pt-2">
<div class="max-w-none prose prose-a:text-primary prose-a:no-underline hover:prose-a:underline prose-h1:font-title prose-h1:font-bold prose-img:rounded-sm">
{{ partial "headline-hash.html" . }}
2021-04-25 16:29:05 +00:00
2022-01-29 17:19:41 +00:00
{{ range .Pages.GroupBy "Section" }}
<h3>{{ .Key | title }}</h3>
<ul>
{{ range .Pages }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
2021-04-25 16:40:52 +00:00
{{ end }}
2022-01-29 17:19:41 +00:00
</ul>
{{ end }}
2019-02-12 18:38:42 +00:00
</div>
2022-01-29 17:19:41 +00:00
</article>
2019-02-12 18:38:42 +00:00
</div>
{{ partial "footer.html" . }}