blob: 5e9705605c212f2dab6a60658629899066b85944 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | {{ if .Site.Params.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 }}
{{ if .Param "math" }}
{{ partialCached "math.html" . }}
{{ end }}
 |