summaryrefslogtreecommitdiff
path: root/layouts/_partials/footer.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_partials/footer.html')
-rw-r--r--layouts/_partials/footer.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/layouts/_partials/footer.html b/layouts/_partials/footer.html
new file mode 100644
index 0000000..a0a30b2
--- /dev/null
+++ b/layouts/_partials/footer.html
@@ -0,0 +1,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>