wiki.trwnh.com/layouts/_default/list.html
2024-01-23 13:59:14 -06:00

52 lines
1.3 KiB
HTML

{{ define "main" }}
{{ $currentFolderName := or $.File.ContentBaseName "index" }}
<main>
<section class="section list">
<div class="container">
<header class="section-header">
{{ if .IsHome }}
<h1 class="section-title">{{.Site.Title}}</h1>
{{ else }}
<h1 class="section-title">{{or .Title .File.Dir}}</h1>
{{ end }}
</header>
<div class="content">
{{.Content}}
</div>
{{ with .Sections }}
<nav>
<h2 class="subsections-title">Sub-sections of {{ $currentFolderName }}</h2>
<ul class="subsections">
{{ range where . "Section" "not in" (slice "search" "sitemap") }}
<li>
<a href="{{ .Permalink }}">
{{ path.Base (path.Split .File.Path).Dir }}/
</a>
</li>
{{ end }}
</ul>
</nav>
{{ end }}
{{ with .RegularPages }}
<nav>
<h2 class="subpages-title">Pages within {{ $currentFolderName }}</h2>
<ul class="subpages">
{{ range . }}
<li>
<a href="{{ .Permalink }}">
{{ $firstH1 := partial "name.html" . }}
{{ if .Site.Params.use_titles_in_section_lists}}
{{ or .Title $firstH1 .File.BaseFileName }}
{{ else }}
{{ .File.LogicalName }}
{{ end }}
</a>
</li>
{{ end }}
</ul>
</nav>
{{ end }}
</div>
</section>
</main>
{{ end }}