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

footer.html « partials « layouts - github.com/dewittn/hugo-html5up-alpha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6095ddf0316dbb6d203c8d216df034957f5d8708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!-- Footer -->
<footer id="footer">
    <ul class="icons">
        {{ range .Site.Params.share }}
            <li><a href="{{ .link }}" class="icon brands {{ .icon }}"><span class="label">{{ .title }}</span></a></li>
        {{ end }}
    </ul>
    <ul class="copyright">
        {{ with .Site.Params.copyright }}
        <li>{{ . | markdownify }}</li>
        {{ end }}
        {{ with .Site.Params.design }}
        <li>{{ . | markdownify }}</li>
        {{ end }}
        {{ with .Site.Params.author }}
        <li>{{ . | markdownify }}</li>
        {{ end }}
    </ul>
</footer>