summaryrefslogtreecommitdiff
path: root/layouts/partials/footer.html
diff options
context:
space:
mode:
authortdback <tyler@tdback.net>2024-12-14 20:41:08 -0500
committertdback <tyler@tdback.net>2024-12-15 10:55:01 -0500
commit0bb075d9c8ea99a6f18d440af6d03c84f17fd23b (patch)
tree719fa87402e536ce3575ea0d9e180381a34ff031 /layouts/partials/footer.html
initial commit of site
Diffstat (limited to 'layouts/partials/footer.html')
-rw-r--r--layouts/partials/footer.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..ca79fa6
--- /dev/null
+++ b/layouts/partials/footer.html
@@ -0,0 +1,34 @@
+<!-- Footer class overrides. -->
+<footer class="footer">
+ <style>
+ .craftering {
+ margin: auto;
+ width: 50%;
+ text-align: center;
+ }
+ </style>
+
+ <span class="footer_item"> </span>
+ &nbsp;
+
+ <div class="footer_social-icons">
+ {{- partial "socialIcons.html" site.Params.socialIcons -}}
+ </div>
+
+ <div class="craftering">
+ <a href="https://craftering.systemcrafters.net/@tdback/previous">←</a>
+ <a href="https://craftering.systemcrafters.net/">craftering</a>
+ <a href="https://craftering.systemcrafters.net/@tdback/next">→</a>
+ </div>
+
+ <small class="footer_copyright">
+ © {{ now.Format "2006" }} {{ .Site.Params.author.name }}.
+ {{ T "footer.disclaimer" | safeHTML }}
+ </small>
+</footer>
+
+{{- if .Site.Params.goToTop -}}
+<a href="#" title="{{ T "footer.go_to_top" }}" id="totop">
+ {{ partial "svgs/arrowUp.svg" (dict "height" 48 "width" 48) . }}
+</a>
+{{- end -}}