summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2022-11-16 23:22:13 +0100
committerQuentin Aristote <quentin@aristote.fr>2022-11-16 23:23:33 +0100
commit4098a8323a2dfbb498e1e59bef417b48b1034775 (patch)
treee0077ea596dbb6b7ba384359d7bdae756b49c986
parent0d63bdd4ff75fcb46a67723030a34b2ae34ef560 (diff)
add uncss and imagemagick to footer
-rw-r--r--html/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/html/default.nix b/html/default.nix
index f63fc25..2d8774c 100644
--- a/html/default.nix
+++ b/html/default.nix
@@ -47,9 +47,14 @@ html.html { lang = "en"; } [
(section: li (href "#${section.title}" section.title)))))
])
(main { role = "main"; } (for sections (section: section.body)))
- (footer
- "Webpage generated with the help of ${href "https://nixos.org/" "Nix"}, ${
+ (footer "Webpage generated with the help of ${
+ href "https://nixos.org/" "Nix"
+ } and ${
href "https://classless.de/" "Classless CSS"
- } and ${href "https://yui.github.io/yuicompressor/" "YUI Compressor"}.")
+ }, and compressed with the help of ${
+ href "https://github.com/uncss/uncss" "uncss"
+ }, ${href "https://yui.github.io/yuicompressor/" "YUI Compressor"} and ${
+ href "https://imagemagick.org/" "ImageMagick"
+ }.")
])
]