From e2815b238c73d765c5d9492806e4fa88c47e1051 Mon Sep 17 00:00:00 2001 From: "Jakob L. Kreuze" Date: Sun, 28 Apr 2019 19:33:39 -0400 Subject: Use Iosevka instead of Inconsolata --- haunt.scm | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) (limited to 'haunt.scm') 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)) -- cgit v1.3