56 lines
No EOL
1.2 KiB
HTML
56 lines
No EOL
1.2 KiB
HTML
{{ define "body" }}
|
|
<body class="wiki layout-wiki-list">
|
|
{{ $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>
|
|
</body>
|
|
{{ end }} |