mirror of
https://github.com/jbowdre/virtuallypotato.git
synced 2024-11-22 15:02:18 +00:00
14 lines
904 B
HTML
14 lines
904 B
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" }}{{ with $s.since }} {{ . }}-{{ end }} <span class="year"></span> {{ $t }}. {{ T "all_rights" }}. {{ T "powered_by" }} <a href="https://gohugo.io/">Hugo</a>, <a href="https://github.com/chipzoller/hugo-clarity">Hugo Clarity theme</a>, <a href="https://gitlab.com/">Gitlab</a>, {{ T "and" }} <a href="https://www.netlify.com/">Netlify</a>.</p>
|
|
{{- partialCached "top" .}}
|
|
</div>
|
|
</footer>
|