Skip to content
Snippets Groups Projects
Unverified Commit aece2597 authored by Philip K's avatar Philip K
Browse files

added html head tags for rss/atom feeds

parent 22516c56
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,11 @@ ...@@ -44,7 +44,11 @@
(meta (@ (name "referrer") (content "none"))) (meta (@ (name "referrer") (content "none")))
(meta (@ (name "viewport") (content "width=device-width"))) (meta (@ (name "viewport") (content "width=device-width")))
(title ,title) (title ,title)
(link (@ (rel "stylesheet") (href "/static/style.css")))) (link (@ (rel "stylesheet") (href "/static/style.css")))
(link (@ (rel "alternate") (type "application/atom+xml") (title "Atom")
(href ,(string-append (site-domain site) "/feed.xml"))))
(link (@ (rel "alternate") (type "application/rss+xml") (title "RSS")
(href ,(string-append (site-domain site) "/rss-feed.xml")))))
(body (body
(header (header
(nav ,@(list (link '(code "#faui2k17") "/") (nav ,@(list (link '(code "#faui2k17") "/")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment