theme/layouts/_default/list.html

25 lines
699 B
HTML
Raw Normal View History

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