mirror of
https://github.com/zopiya/blog.git
synced 2025-11-03 20:16:47 +08:00
15 lines
393 B
HTML
15 lines
393 B
HTML
{{ $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 }}
|