summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2022-11-13 13:47:55 +0100
committerQuentin Aristote <quentin@aristote.fr>2022-11-13 13:47:55 +0100
commit122631538f9446b8a99c217672f3835ff2e06a5e (patch)
treed0cc5cac141534beee0449974267833562abeed0
parent2026c2895984132196f584cc65bdd26a74572654 (diff)
html: add footer
-rw-r--r--html/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/html/default.nix b/html/default.nix
index 90a5143..f63fc25 100644
--- a/html/default.nix
+++ b/html/default.nix
@@ -47,6 +47,9 @@ html.html { lang = "en"; } [
(section: li (href "#${section.title}" section.title)))))
])
(main { role = "main"; } (for sections (section: section.body)))
- (footer [ ])
+ (footer
+ "Webpage generated with the help of ${href "https://nixos.org/" "Nix"}, ${
+ href "https://classless.de/" "Classless CSS"
+ } and ${href "https://yui.github.io/yuicompressor/" "YUI Compressor"}.")
])
]