add head link tag for atom feed
This commit is contained in:
parent
bf90b687e0
commit
93789f0d07
1 changed files with 6 additions and 1 deletions
|
@ -27,6 +27,7 @@
|
|||
(define-module (tekuti template)
|
||||
#:use-module (web uri)
|
||||
#:use-module (tekuti config)
|
||||
#:use-module (tekuti page-helpers)
|
||||
#:export (templatize))
|
||||
|
||||
(define* (templatize #:key
|
||||
|
@ -56,7 +57,11 @@
|
|||
(link (@ (rel "stylesheet")
|
||||
(type "text/css")
|
||||
(media "screen")
|
||||
(href ,*css-file*))))
|
||||
(href ,*css-file*)))
|
||||
(link (@ (rel "alternate")
|
||||
(type "application/rss+xml")
|
||||
(title ,*title*)
|
||||
(href ,(relurl `("feed" "atom"))))))
|
||||
(body
|
||||
(div (@ (id "rap"))
|
||||
(h1 (@ (id "header"))
|
||||
|
|
Loading…
Reference in a new issue