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

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