diff options
| author | bdunahu <bdunahu@operationnull.com> | 2026-04-22 14:08:24 -0400 |
|---|---|---|
| committer | bdunahu <bdunahu@operationnull.com> | 2026-04-22 14:08:24 -0400 |
| commit | 8d4d039696c205b36aa2be547f5ec25eaadaa37a (patch) | |
| tree | c1cca077352183fa0d1cbadef928f1b03c872f89 /src/operationnull/theme.scm | |
| parent | 77c0ae3edd3daef486e695a9bfa17c45d581b1bb (diff) | |
new recommended page, minor edits across all pages
Diffstat (limited to 'src/operationnull/theme.scm')
| -rw-r--r-- | src/operationnull/theme.scm | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/operationnull/theme.scm b/src/operationnull/theme.scm index 1b47d81..7eded32 100644 --- a/src/operationnull/theme.scm +++ b/src/operationnull/theme.scm @@ -1,3 +1,5 @@ +;; SPDX-License-Identifier: CC-BY-4.0 +;; Copyright 2026 bdunahu <bdunahu@operationnull.com> (define-module (operationnull theme) #:use-module (haunt artifact) #:use-module (haunt builder blog) @@ -25,6 +27,8 @@ "blog")) (li (a (@ (href "https://git.operationnull.com/")) "git")) + (li (a (@ (href "https://codeberg.org/bdunahu")) + "codeberg")) (li (a (@ (href "gemini://porphyrion.operationnull.com/")) "porphyrion")))))) (div (@ (class "intro-right")) @@ -34,12 +38,10 @@ (define %footer `(footer (@ (class "footer")) - (div (@ (class "footer-head")) - (nav (div (@ (class "umaring-id"))))) ,(date->string (current-date) "Copyright © 2024-~Y bdunahu") "." (br) - "Art by " + "Header art © " (a (@ (href "https://rottngutt.rf.gd/about.php")) "rottngutt") ", other content available under the " ,%cc-by-sa-link " license " @@ -76,9 +78,13 @@ (lambda (site title body) `((doctype "html") (head - (meta (@ (charset "utf-8"))) + (meta (@ (http-equiv "Content-Type") (content "text/html; charset=UTF-8"))) + (meta (@ (http-equiv "Content-Language") (content "en"))) (meta (@ (name "viewport") (content "width=device-width, initial-scale=1"))) + (meta (@ (name "description") + (content "bdunahu's personal website"))) + (meta (@ (name "author") (content "bdunahu"))) ;; (link (@ (rel "icon") ;; (type "image/x-icon") ;; (href "/assets/favicon.ico"))) |
