summaryrefslogtreecommitdiffstats
path: root/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_partials/footer.html24
1 files changed, 24 insertions, 0 deletions
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 @@
+<hr>
+<p>
+ {{- 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 -}}&ndash;{{- $lastMod.Year -}}
+ {{- else -}}
+ Copyright {{ $epoch.Year -}}
+ {{- end -}}
+ {{- end -}}
+ {{- end -}}
+ {{- with .Site.Params.author.name -}}
+ , {{ . }}
+ {{- end -}}
+ . All rights reserved.
+</p>
+<p>
+ Powered by
+ <a href="https://gohugo.io/">Hugo</a> and
+ <a href="https://freedns.afraid.org/">Free DNS</a>.
+ <a class="button" href="https://git.samanthony.xyz/samanthony.xyz/">Source code →</a>
+</p>