summaryrefslogtreecommitdiff
path: root/layouts/partials/footer.html
diff options
context:
space:
mode:
authorArne Rief <riearn@proton.me>2026-01-09 12:24:05 +0100
committerArne Rief <riearn@proton.me>2026-01-09 12:24:05 +0100
commitf8541ef965ca22e746b523eb418e47cb4f78f2d8 (patch)
tree49e1540ed42595a44196817eadf97337587a2aea /layouts/partials/footer.html
parent038054b8206a9c25e84adeb0f0f355abd22d6143 (diff)
Upgrade to new template system from Hugo v0.146.0
Diffstat (limited to 'layouts/partials/footer.html')
-rw-r--r--layouts/partials/footer.html41
1 files changed, 0 insertions, 41 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
deleted file mode 100644
index a0a30b2..0000000
--- a/layouts/partials/footer.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<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>