trwnh.com/unified.test.hugo/layouts/partials/site-footer.html
2024-11-13 11:24:48 -06:00

42 lines
No EOL
1 KiB
HTML

<footer class="site-footer">
<div class="container">
<hr />
{{/* <a href="#main" class="back-to-top">Back to top</a> */}}
<section>
<h2>About this site</h2>
{{- with .Site.Params.summary }}
<p>{{ . | markdownify }}</p>
{{- end }}
</section>
<nav class="on-this-site">
<h2>On this site</h2>
<ul>
<li><a href="{{.Site.Home.Permalink}}">Home</a></li>
<li><a href="{{absURL .Sitemap.Filename}}">Sitemap</a></li>
</ul>
{{- $sections := where .Site.Sections "Section" "not in" (slice "_dump" "meta" "responses") }}
{{- $sections = sort $sections "Title" "asc"}}
{{- with $sections }}
<section class="on-this-site-sections">
<h3>Sections</h3>
<ul>
{{- range . }}
<li><a href="{{.Permalink}}">{{or .Title .File.ContentBaseName}}</a></li>
{{- end }}
</ul>
</section>
{{- end }}
{{- with .Site.Taxonomies }}
<section class="on-this-site-taxonomies">
<h3>Taxonomies</h3>
<ul>
{{- range $k, $v := . }}
{{- $url := printf "/%s" $k | absURL}}
<li><a href="{{$url}}">{{$k}}</a></li>
{{- end }}
</ul>
</section>
{{- end }}
</nav>
</div>
</footer>