diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-05-24 07:40:54 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-05-24 07:40:54 -0400 |
commit | 48d01676f8e5151644e12124a57cbd1e2090f4c7 (patch) | |
tree | 3bad4e1768c95ac4585414525f28b4b438a1a5fa | |
parent | 6381de5914df79b2c807c518e9aa04e20125d643 (diff) |
Add atom feed link to page header.
-rw-r--r-- | theme.scm | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -54,6 +54,10 @@ (head (meta (@ (charset "utf-8"))) (title ,(string-append title " — " (site-title site))) + (link (@ (rel "alternate") + (type "application/atom+xml") + (title "Atom feed") + (href "/feed.xml"))) ,(stylesheet "reset") ,(stylesheet "fonts") ,(stylesheet "dthompson")) |