diff options
Diffstat (limited to 'src/operationnull')
-rw-r--r-- | src/operationnull/pages.scm | 7 | ||||
-rw-r--r-- | src/operationnull/site.scm | 3 | ||||
-rw-r--r-- | src/operationnull/theme.scm | 10 |
3 files changed, 6 insertions, 14 deletions
diff --git a/src/operationnull/pages.scm b/src/operationnull/pages.scm index d317570..fe90925 100644 --- a/src/operationnull/pages.scm +++ b/src/operationnull/pages.scm @@ -27,10 +27,9 @@ (p "I am reachable by email:") (ul (@ (type "bullet")) (li (b "email: ") "bdunahu @ this domain")) - (ul (p (@ (style "font-size: 80%;")) - "If you know how/want to send encrypted email:") - (ul (@ (style "font-size: 80%;")) - (code "curl -sL https://operationnull.com/assets/bdunahu.pub | gpg --import") + (ul (@ (style "font-size: 80%;")) + (p "If you know how/want to send encrypted email:") + (ul (code "curl -sL https://operationnull.com/assets/bdunahu.pub | gpg --import") (br) "Fingerprint: " (code "5550 5CA6 9DE5 D342 7F31 F9AE 5F86 6C65 2A34 C996"))) diff --git a/src/operationnull/site.scm b/src/operationnull/site.scm index c6cfe31..1fad264 100644 --- a/src/operationnull/site.scm +++ b/src/operationnull/site.scm @@ -11,9 +11,6 @@ #:export (main-site)) -(define %blog-collection - `(("Infrequently Updated Notes" "/posts/index.html" ,posts/reverse-chronological))) - (define main-site (site #:title "operationnull" #:domain "operationnull.com" diff --git a/src/operationnull/theme.scm b/src/operationnull/theme.scm index db5a157..70e81e6 100644 --- a/src/operationnull/theme.scm +++ b/src/operationnull/theme.scm @@ -38,10 +38,6 @@ (type "image/x-icon") (href "/assets/favicon.ico"))) (title ,(string-append title " — " (site-title site))) - (link (@ (rel "alternate") - (type "application/atom+xml") - (title "Atom feed") - (href "/atom.xml"))) ,(stylesheet "site") ) (body @@ -58,15 +54,15 @@ '(div (@ (class "container")) (ul (li (a (@ (href "gemini://porphyrion.operationnull.com/")) "porphyrion")) - (li (a (@ (href "https://git.operationnull.com/")) + (li (a (@ (href "https://git.operationnull.com/")) "git")) (li (a (@ (href "/contact.html")) "contact")) - (li (a (@ (href "/")) + (li (a (@ (href "/")) "home"))))) ,body (footer (@ (class "footer")) - "Copyright © 2024 bdunahu" + "Copyright © 2025 bdunahu" (br) "Site content available under the " ,%cc-by-sa-link " license " (a (@ (href "https://git.operationnull.com/operationnull.git/")) |