diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-04-28 19:33:39 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-04-28 19:33:39 -0400 |
| commit | e2815b238c73d765c5d9492806e4fa88c47e1051 (patch) | |
| tree | 2a39d7d3985a577cb1d20598095d373118760412 /haunt.scm | |
| parent | 936509a4a5be6032a06323b6dd8994cf4e62aa6b (diff) | |
Use Iosevka instead of Inconsolata
Diffstat (limited to 'haunt.scm')
| -rw-r--r-- | haunt.scm | 54 |
1 files changed, 27 insertions, 27 deletions
@@ -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)) |