summaryrefslogtreecommitdiff
path: root/haunt.scm
diff options
context:
space:
mode:
Diffstat (limited to 'haunt.scm')
-rw-r--r--haunt.scm18
1 files changed, 17 insertions, 1 deletions
diff --git a/haunt.scm b/haunt.scm
index c5744c4..d1a8a83 100644
--- a/haunt.scm
+++ b/haunt.scm
@@ -114,6 +114,21 @@ place them in the directory DEST."
+(define footer
+ `(footer
+ "Made with " (span (@ (class "highlight")) "♥")
+ " by "
+ (a (@ (href "/who.html"))
+ "humans")
+ " and powered by "
+ (a (@ (href "https://gnu.org/software/guile"))
+ "GNU Guile") ". "
+ (a (@ (href "http://git.savannah.gnu.org/cgit/guix/bootstrappable.git/"))
+ "Source code")
+ " under the "
+ (a (@ (href "https://gnu.org/licenses/agpl-3.0.html"))
+ "GNU AGPL") "."))
+
(define (make-layout big-banner?)
(lambda (site title body)
`((doctype "html")
@@ -145,7 +160,8 @@ place them in the directory DEST."
(src "/images/banner-slim.svg")))))
(h1 ,title)))
(div (@ (id "page"))
- ,body)))))
+ ,body)
+ ,footer))))
(define default-layout (make-layout #f))
(define index-layout (make-layout #t))