summaryrefslogtreecommitdiff
path: root/themes/spectral/layouts/partials/footer.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/spectral/layouts/partials/footer.html')
-rw-r--r--themes/spectral/layouts/partials/footer.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/themes/spectral/layouts/partials/footer.html b/themes/spectral/layouts/partials/footer.html
new file mode 100644
index 0000000..f2f8c70
--- /dev/null
+++ b/themes/spectral/layouts/partials/footer.html
@@ -0,0 +1,43 @@
+ <!-- Footer -->
+ <footer id="footer">
+ <ul class="icons">
+ {{ with .Site.Params.social.twitter }}
+ <li><a href="https://twitter.com/{{ . }}" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
+ {{ end }}
+ {{ with .Site.Params.social.mastodon }}
+ <li><a href="https://mastodon.social/{{ . }}" class="icon brands fa-mastodon"><span class="label">Mastodon</span></a></li>
+ {{ end }}
+ {{ with .Site.Params.social.github }}
+ <li><a href="https://github.com/{{ . }}" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
+ {{ end }}
+ {{ with .Site.Params.social.facebook }}
+ <li><a href="https://facebook.com/{{ . }}" class="icon brands fa-facebook"><span class="label">Facebook</span></a></li>
+ {{ end }}
+ {{ with .Site.Params.social.youtube }}
+ <li><a href="https://youtube.com/{{ . }}" class="icon brands fa-youtube"><span class="label">GitHub</span></a></li>
+ {{ end }}
+ {{ with .Site.Params.social.instagram }}
+ <li><a href="https://instagram.com/{{ . }}" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
+ {{ end }}
+ {{ with .Site.Params.social.dribble }}
+ <li><a href="https://dribble.com/{{ . }}" class="icon brands fa-dribbble"><span class="label">Dribbble</span></a></li>
+ {{ end }}
+ {{ with .Site.Params.contact.email }}
+ <li><a href="mailto:{{ . }}" class="icon solid fa-envelope"><span class="label">Email</span></a></li>
+ {{ end }}
+ {{ with .Site.Params.contact.phone }}
+ <li><a href="tel:{{ . }}" class="icon solid fa-phone"><span class="label">Phone</span></a></li>
+ {{ end }}
+
+ </ul>
+ <ul class="copyright">
+ <li>&copy; {{ now.Year }} {{.Site.Params.copyright | safeHTML }}</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
+ </ul>
+ </footer>
+
+ </div>
+
+ {{ partial "scripts.html" . }}
+
+ </body>
+</html>