summaryrefslogtreecommitdiffstats
path: root/layouts/partials/footer.html
blob: fd50c5e333c50ff5b6d672b2cc999a2c5c482b9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="sidebar-item">
    <p>
        {{- with site.Params.footer -}}
        {{- $footer_text := replace . "{year}" now.Year -}}
        {{- $footer_text = replace $footer_text "&copy;" "©" }}
        {{ $footer_text | safeHTML }}
        {{- else }}{{- /* TODO: translate strings */ -}}
        {{- with .Params.editor }}<p>Edited by {{ . }}, {{ now.Format "2006" }}.</p>{{ end }}
        Built with <a href="https://github.com/sergeyklay/gohugo-theme-ed" target="_blank" rel="noopener noreferrer">Ed.</a>
        Distributed under an MIT license.
        {{- end }}
    </p>
</div>