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

footer.html « partials « layouts - github.com/danielkvist/hugo-piercer-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c908af8cd17e2863ee261126aeeea6b394cd9f7 (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
28
29
30
31
32
33
34
35
36
37
38
<footer class="footer">

    <!-- Social Links -->
    {{ if $.Site.Params.social }}
    {{ partial "social.html" . }}
    {{ end }}

    <!-- Contact Links -->
    {{ if $.Site.Params.contact.show }}
    <hr>
    {{ partial "contact-info.html" . }}
    <hr>
    {{ end }}

    <!-- Agreement -->
    {{ if $.Site.Params.agreement.message }}
    <section class="footer__agreement">
        {{ safeHTML $.Site.Params.agreement.message }}
    </section>
    <hr>
    {{ end }}

    <!-- Copy -->
    <div class="footer__copy">
        {{ if $.Site.Params.copy.message }}
        {{ $.Site.Params.copy.message }}
        {{ else }}
        © {{ now.Format "2006" }} - {{ $.Site.Title }}
        {{ end }}
    </div>

    <!-- JS Script -->
    {{ partial "scripts.html" . }}

    <!-- Font Awesome -->
    {{ partial "fontawesome.html" . }}

</footer>