summaryrefslogtreecommitdiff
path: root/layouts/partials/footer.html
blob: a0a30b20f8f5cd00ecb260790d9c92c7949918e1 (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
39
40
41
<footer class="site__footer" role="contentinfo">
    <p>&copy; {{ now.Year }} {{ site.Params.author.name }}</p>

    <nav class="follow-me-links" aria-label="Follow me on:">
        <ul class="follow-me-list">
            {{- range site.Params.socials }}
            <li class="follow-me-item">
                <a
                    href="{{ .url }}"
                    aria-label="{{ .name }}"
                    title="{{ .name }}"
                    rel="me noopener noreferrer"
                    target="_blank"
                >
                    <img
                        src="{{ .icon }}"
                        class="icon icon-{{ lower .name }}"
                        alt="{{ .name }}"
                        aria-hidden="true"
                    />
                </a>
            </li>
            {{- end }}
            <li class="follow-me-item">
                <a
                    href="{{ site.Home.Permalink }}index.xml"
                    aria-label="RSS Feed"
                    title="RSS Feed"
                    target="_blank"
                >
                    <img
                        src="/rss.svg"
                        class="icon icon-rss"
                        alt="RSS Feed"
                        aria-hidden="true"
                    />
                </a>
            </li>
        </ul>
    </nav>
</footer>