diff options
Diffstat (limited to 'src/operationnull/theme.scm')
-rw-r--r-- | src/operationnull/theme.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/operationnull/theme.scm b/src/operationnull/theme.scm index 3129203..1d0b144 100644 --- a/src/operationnull/theme.scm +++ b/src/operationnull/theme.scm @@ -41,11 +41,12 @@ (link (@ (rel "alternate") (type "application/atom+xml") (title "Atom feed") - (href "/feed.xml"))) + (href "/atom.xml"))) ,(stylesheet "site") ) (body (intro + (br) '(div (@ (class "container")) (img (@ (alt "raven") (class "no-border") (src "/assets/raven.png"))) @@ -57,10 +58,10 @@ '(div (@ (class "container")) (ul (li (a (@ (href "https://git.operationnull.com/")) "git")) - (li (a (@ (href "/pages/contact.html")) + (li (a (@ (href "/contact.html")) "contact")) (li (a (@ (href "/posts/")) - "rand")) + "blog")) (li (a (@ (href "/")) "home"))))) ,body @@ -96,7 +97,7 @@ (string-append prefix "/" (site-post-slug site post) ".html")) `(article (h2 ,title - (a (@ (href "/feed.xml")) + (a (@ (href "/atom.xml")) (img (@ (class "feed-icon") (src "/assets/feed.png"))))) ,(map (lambda (post) (let ((uri (post-uri post))) |