URI:
       add Atom content feed in the header of a page - saait - the most boring static page generator
  HTML git clone git://git.codemadness.org/saait
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit c2c2c0934d8b2b362dddd503df382a1b5ae2afb5
   DIR parent 5081d4732c16126a4cc3cf2e6ac20207f15f0a96
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Wed,  4 Nov 2020 17:57:11 +0100
       
       add Atom content feed in the header of a page
       
       Diffstat:
         M templates/index.html/header.html    |       1 +
         M templates/page/header.html          |       1 +
       
       2 files changed, 2 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/templates/index.html/header.html b/templates/index.html/header.html
       @@ -12,6 +12,7 @@
                <link rel="stylesheet" href="style.css" type="text/css" media="screen" />
                <link rel="stylesheet" href="print.css" type="text/css" media="print" />
                <link rel="alternate" href="atom.xml" type="application/atom+xml" title="${sitetitle} Atom Feed" />
       +        <link rel="alternate" href="atom_content.xml" type="application/atom+xml" title="${sitetitle} Atom Feed with content" />
                <link rel="icon" href="/favicon.png" type="image/png" />
        </head>
        <body>
   DIR diff --git a/templates/page/header.html b/templates/page/header.html
       @@ -12,6 +12,7 @@
                <link rel="stylesheet" href="style.css" type="text/css" media="screen" />
                <link rel="stylesheet" href="print.css" type="text/css" media="print" />
                <link rel="alternate" href="atom.xml" type="application/atom+xml" title="${sitetitle} Atom Feed" />
       +        <link rel="alternate" href="atom_content.xml" type="application/atom+xml" title="${sitetitle} Atom Feed with content" />
                <link rel="icon" href="/favicon.png" type="image/png" />
        </head>
        <body>