website-theme/layouts/partials/footer.html

56 lines
1.6 KiB
HTML
Raw Normal View History

2018-09-23 07:11:35 -04:00
<footer>
2019-03-23 03:18:03 -04:00
<p>
&copy; {{ dateFormat "2006" now }} {{ .Site.Params.Author }}.
2019-03-23 03:18:03 -04:00
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.
2019-03-23 03:18:03 -04:00
</p>
2023-01-03 21:00:27 -05:00
<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 }}
</ul>
</nav>
</div>
2018-09-23 07:11:35 -04:00
</footer>
2022-02-17 14:09:01 -05:00
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"email": "mailto://{{ .Site.Params.email }}",
2022-12-01 23:31:17 -05:00
"image": "{{ .Site.BaseURL }}img/{{ .Site.Params.avatar }}",
2022-02-17 14:09:01 -05:00
"name": "{{ .Site.Params.Author }}",
"url": "{{ .Site.BaseURL }}"
}
</script>
2021-08-05 21:56:05 -04:00
<script async src="https://dash.brandonrozek.com/tracker.js" data-ackee-server="https://dash.brandonrozek.com" data-ackee-domain-id="41f92524-47ad-497b-b342-a8c296e4b11b"></script>
2018-09-23 07:11:35 -04:00
{{- range .Site.Params.custom_js -}}
<script src="{{ . }}"></script>
2018-09-23 07:11:35 -04:00
{{ end }}