summaryrefslogtreecommitdiff
path: root/layouts/partials/footer.html
blob: 579e50a71084f70737ab3797f260775aaf5a2189 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ $showFooter := default true .Site.Params.showFooter }}
{{ if $showFooter }}
    {{ if not .Site.Params.footerContent }}
    <p>Powered by
        <a href="https://gohugo.io/">Hugo</a>
        and
        <a href="https://github.com/tomfran/typo">tomfran/typo</a>
    </p>
    {{ end }}
    
    {{ with .Site.Params.footerContent }}
    <p>{{ . | markdownify }}</p>
    {{ end }}
{{ end }}