2023-09-26 15:54:37 -04:00
|
|
|
<footer>
|
|
|
|
<p>
|
|
|
|
© {{ dateFormat "2006" now }} {{ .Site.Params.Author }}.
|
|
|
|
Powered by <a href="https://gohugo.io/">Hugo</a>
|
|
|
|
using a modified version of the <a href="https://github.com/koirand/pulp/">pulp</a> theme.
|
|
|
|
</p>
|
|
|
|
<div class="footer-navs block-center">
|
|
|
|
<nav>
|
|
|
|
<p>Content Pages</p>
|
|
|
|
<ul id="footer-nav-sections">
|
|
|
|
{{ range .Site.Sections }}
|
|
|
|
{{ if not .Params.hidden }}
|
|
|
|
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<nav>
|
|
|
|
<p>Social</p>
|
|
|
|
<ul>
|
|
|
|
{{ range .Site.Menus.profile }}
|
|
|
|
<li><a href="{{ .URL }}" rel="me" aria-label="{{ .Identifier }}">{{ .Name }}</a></li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<nav>
|
|
|
|
<p>More Pages</p>
|
|
|
|
<ul>
|
|
|
|
{{ $sectionPages := where .Site.Pages "Section" "" }}
|
|
|
|
{{ range $sectionPages }}
|
|
|
|
{{ if and (not .Params.hidden) (ne .Permalink .Site.BaseURL)}}
|
|
|
|
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2023-12-28 12:35:37 -05:00
|
|
|
<li><a href="/support">Support</a></li>
|
2023-09-26 15:54:37 -04:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</footer>
|