trwnh.com/unified.test.hugo/layouts/wiki/list.html

56 lines
1.2 KiB
HTML
Raw Normal View History

2024-10-05 06:27:07 +00:00
{{ define "body" }}
2024-10-05 19:56:14 +00:00
<body class="wiki layout-wiki-list">
2024-10-18 07:33:33 +00:00
{{ $currentFolderName := or $.File.ContentBaseName "index" }}
{{ partial "wiki/site-header.html" .}}
{{ partial "wiki/breadcrumbs.html" .}}
<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 hugo-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 "firstH1.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>
2024-10-05 06:27:07 +00:00
</body>
{{ end }}