summaryrefslogtreecommitdiff
path: root/haunt.scm
diff options
context:
space:
mode:
Diffstat (limited to 'haunt.scm')
-rw-r--r--haunt.scm54
1 files changed, 27 insertions, 27 deletions
diff --git a/haunt.scm b/haunt.scm
index dc8cd5c..d7cb9b5 100644
--- a/haunt.scm
+++ b/haunt.scm
@@ -89,34 +89,34 @@
#:layout
(lambda (site title body)
`((doctype "html")
- (head
- (meta (@ (charset "utf-8")))
- (title ,(string-append title " — " (site-title site)))
- ,(stylesheet "fonts")
- ,(stylesheet "jakob")
- ,(stylesheet "reset"))
- (body
- (div (@ (class "container"))
- (div (@ (class "nav"))
- (ul (li ,(link "Jakob L. Kreuze" "/"))
- (li (@ (class "fade-text")) " ")
- (li ,(link "About" "/about.html"))
- (li ,(link "Blog" "/index.html"))
- (li ,(link "Projects" "/projects.html"))))
- ,body
- (footer (@ (class "text-center"))
- (p (@ (class "copyright"))
- "© 2019 Jakob L. Kreuze"
- ,%cc-by-sa-button)
- (p "The text and images on this site are
+ (html
+ (head
+ (meta (@ (charset "utf-8")))
+ (title ,(string-append title " — " (site-title site)))
+ ,(stylesheet "fonts")
+ ,(stylesheet "jakob"))
+ (body
+ (div (@ (class "container"))
+ (div (@ (class "nav"))
+ (ul (li ,(link "Jakob L. Kreuze" "/"))
+ (li (@ (class "fade-text")) " ")
+ (li ,(link "About" "/about.html"))
+ (li ,(link "Blog" "/index.html"))
+ (li ,(link "Projects" "/projects.html"))))
+ ,body
+ (footer (@ (class "text-center"))
+ (p (@ (class "copyright"))
+ "© 2019 Jakob L. Kreuze"
+ ,%cc-by-sa-button)
+ (p "The text and images on this site are
free culture works available under the " ,%cc-by-sa-link " license.")
- (p "This website is built with "
- (a (@ (href "http://haunt.dthompson.us"))
- "Haunt")
- ", a static site generator written in "
- (a (@ (href "https://gnu.org/software/guile"))
- "Guile Scheme")
- "."))))))
+ (p "This website is built with "
+ (a (@ (href "http://haunt.dthompson.us"))
+ "Haunt")
+ ", a static site generator written in "
+ (a (@ (href "https://gnu.org/software/guile"))
+ "Guile Scheme")
+ ".")))))))
#:post-template
(lambda (post)
`((h1 (@ (class "title")),(post-ref post 'title))