about summary refs log tree commit diff
path: root/layouts/partials/footer.html
blob: a93d3a3e087dfa1ea80c7f31b280a05b3dfed247 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<footer id="footer">
    {{ $languagesCount := $.Site.Home.AllTranslations }}
    {{ if gt $languagesCount 1 }}
        {{ partial "language-switcher.html" . }}
    {{ end }}

    <div class="common-footer-bottom">
        <div class="copyright">
            <p>© 2021-{{ now.Year }} {{ .Site.Params.author }}<br>
            {{ partial "copyright.html" . }}
            </p>
        </div> 
        <div>
            {{ partial "social.html" . }}
        </div>
    </div>
</footer>