2021-12-17 01:55:57 +00:00
|
|
|
{{- $s := .Site.Params }}
|
|
|
|
{{ $t := .Site.Title }}
|
|
|
|
{{- if or .Params.enableMathNotation $s.enableMathNotation }}
|
|
|
|
{{ partialCached "math" . }}
|
|
|
|
{{- end }}
|
|
|
|
{{- $iconsDir := default "icons/" .Site.Params.iconsDir }}
|
|
|
|
{{- $defaultFooterLogo := printf "%s%s" $iconsDir "apple-touch-icon.png"}}
|
|
|
|
<footer class="footer">
|
|
|
|
<div class="footer_inner wrap pale">
|
|
|
|
<img src='{{ absURL (default $defaultFooterLogo $s.footerLogo) }}' class="icon icon_2 transparent" alt="{{ $t }}">
|
2022-05-25 20:22:38 +00:00
|
|
|
<p>{{ T "copyright" | markdownify }}{{ with $s.since }} {{ . }}-{{ end }} <span class="year"></span> {{ $t }}<a rel="me" href="https://counter.social/@john_b">.</a> {{ T "all_rights" | markdownify }}. {{ T "powered_by" | markdownify }} <a href="https://gohugo.io/">Hugo</a>, <a href="https://github.com/chipzoller/hugo-clarity">Hugo Clarity theme</a>, {{ T "and" | markdownify }} <a href="https://www.netlify.com/">Netlify</a>. <a href="https://github.com/jbowdre/virtuallypotato">{{ T "view_source" | markdownify }}</a>.</p>
|
2021-12-17 01:55:57 +00:00
|
|
|
{{- partialCached "top" .}}
|
|
|
|
</div>
|
|
|
|
</footer>
|