Welcome to mirror list, hosted at ThFree Co, Russian Federation.

copyright.html « partials « layouts - gitlab.com/maxlefou/hugo.386.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54991d9492f32971408e8c914219e258ccd9e897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{{ with .Site.Params.Copyright.Prefix }}
    {{ . | markdownify }} | 
{{end}}

© 

{{ with .Site.Params.copyright.url }}
    <a href="{{ . }}" target="_blank">
{{ end }}

    {{ .Site.Params.copyright.name }}

{{ with .Site.Params.copyright.url }}
    </a>
{{ end }}

<span id="thisyear">
    {{ now.Year }}
</span>

{{ with .Site.Params.Copyright.Suffix }}
    | {{ . | markdownify }}
{{end}}

{{ if .Site.Params.showhugo }}
        | {{ i18n "builton" }} <a href="//gohugo.io" target="_blank">Hugo</a>
{{ end }}