mirror of
https://github.com/jbowdre/virtuallypotato.git
synced 2024-11-21 22:42:19 +00:00
16 lines
1.2 KiB
HTML
16 lines
1.2 KiB
HTML
{{- $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 }}">
|
|
<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 }}.
|
|
<br>{{ 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>. {{ T "analytics_with" | markdownify }} <a href="https://withcabin.com/privacy/virtuallypotato.com">Cabin</a>.
|
|
<br><a href="https://github.com/jbowdre/virtuallypotato">{{ T "view_source" | markdownify }}</a>.</p>
|
|
{{- partialCached "top" .}}
|
|
</div>
|
|
</footer>
|