diff --git a/share/html_templates/header.mustache b/share/html_templates/header.mustache index f50c00f..e619207 100644 --- a/share/html_templates/header.mustache +++ b/share/html_templates/header.mustache @@ -1 +1 @@ -

{{title}}

+

{{title}}

diff --git a/src/html.ml b/src/html.ml index 0847000..9e685e6 100644 --- a/src/html.ml +++ b/src/html.ml @@ -4,6 +4,7 @@ let to_string tyxml = Format.asprintf "%a" (Tyxml.Html.pp ()) tyxml let head ?(style="/static/main.css") t = head (title (pcdata t)) [ link ~rel:[`Stylesheet] ~href:style (); + link ~rel:[`Alternate] ~href:"/feed.atom" ~a:[a_mime_type "application/atom+xml"] (); meta ~a:[a_charset "utf-8"] (); ]