From c7009f0eb01628fb0ff52351a3e75a4aeb164e8e Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sat, 10 Jan 2026 12:31:51 -0500 Subject: link to hugo, freedns, and site source code in footer --- content/projects/index.md | 2 ++ layouts/_partials/footer.html | 24 ++++++++++++++++++++++++ themes/aoidh/layouts/_partials/footer.html | 17 ----------------- 3 files changed, 26 insertions(+), 17 deletions(-) create mode 100644 layouts/_partials/footer.html delete mode 100644 themes/aoidh/layouts/_partials/footer.html diff --git a/content/projects/index.md b/content/projects/index.md index f021a61..2d072f9 100644 --- a/content/projects/index.md +++ b/content/projects/index.md @@ -6,3 +6,5 @@ draft = false +++ Browse source code at [git.samanthony.xyz](https://git.samanthony.xyz/). + +Mirrored at [github.com/sam-rba](https://github.com/sam-rba/). diff --git a/layouts/_partials/footer.html b/layouts/_partials/footer.html new file mode 100644 index 0000000..e3699e0 --- /dev/null +++ b/layouts/_partials/footer.html @@ -0,0 +1,24 @@ +
+

+ {{- with index (sort .Site.RegularPages "Date" "asc") 0 -}} + {{ $epoch := .Date }} + {{- with index (sort .Site.Pages "Lastmod" "desc") 0 -}} + {{ $lastMod := .Lastmod }} + {{- if gt $lastMod.Year $epoch.Year -}} + Copyright {{ $epoch.Year -}}–{{- $lastMod.Year -}} + {{- else -}} + Copyright {{ $epoch.Year -}} + {{- end -}} + {{- end -}} + {{- end -}} + {{- with .Site.Params.author.name -}} + , {{ . }} + {{- end -}} + . All rights reserved. +

+

+ Powered by + Hugo and + Free DNS. + Source code → +

diff --git a/themes/aoidh/layouts/_partials/footer.html b/themes/aoidh/layouts/_partials/footer.html deleted file mode 100644 index 91d4a34..0000000 --- a/themes/aoidh/layouts/_partials/footer.html +++ /dev/null @@ -1,17 +0,0 @@ -
-

-{{- with index (sort .Site.RegularPages "Date" "asc") 0 -}} - {{ $epoch := .Date }} - {{- with index (sort .Site.Pages "Lastmod" "desc") 0 -}} - {{ $lastMod := .Lastmod }} - {{- if gt $lastMod.Year $epoch.Year -}} - Copyright {{ $epoch.Year -}}–{{- $lastMod.Year -}} - {{- else -}} - Copyright {{ $epoch.Year -}} - {{- end -}} - {{- end -}} -{{- end -}} -{{- with .Site.Params.author.name -}} - , {{ . }} -{{- end -}} -. All rights reserved.

-- cgit v1.2.3