summaryrefslogtreecommitdiff
path: root/layouts/partials/footer.html
blob: e7d754cf78bfe5924285e73e01da75d9d5e7d02b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ $showFooter := default true .Site.Params.showFooter }}
{{ if $showFooter }}
    {{/* Footer start hook */}}
    {{ partial "functions/get_hook.html" (dict "hook" "footer_start" "context" .) }}

    {{ if not .Site.Params.footerContent }}
    <p>Powered by
        <a href="https://gohugo.io/">Hugo</a>
        and
        <a href="https://git.push-f.com/tastefejl/">tastefejl</a>
    </p>
    {{ end }}

    {{ with .Site.Params.footerContent }}
    <p>{{ . | markdownify }}</p>
    {{ end }}
{{ end }}