# HG changeset patch # User Marcin Kuzminski # Date 1339071808 -7200 # Node ID 6bef2a9f73e275c5efb0fa05c8ba70ff712d207a # Parent 708f70d4f8ef6f67b3519b53bfee2e3b33b1ff96 added discoverable rss/atom links in pages diff -r 708f70d4f8ef -r 6bef2a9f73e2 rhodecode/templates/base/root.html --- a/rhodecode/templates/base/root.html Thu Jun 07 13:09:59 2012 +0200 +++ b/rhodecode/templates/base/root.html Thu Jun 07 14:23:28 2012 +0200 @@ -137,6 +137,8 @@ <%def name="js_extra()"> ${self.js()} + <%def name="head_extra()"> + ${self.head_extra()} ## IE hacks diff -r 708f70d4f8ef -r 6bef2a9f73e2 rhodecode/templates/journal/journal.html --- a/rhodecode/templates/journal/journal.html Thu Jun 07 13:09:59 2012 +0200 +++ b/rhodecode/templates/journal/journal.html Thu Jun 07 14:23:28 2012 +0200 @@ -9,6 +9,10 @@ <%def name="page_nav()"> ${self.menu('home')} +<%def name="head_extra()"> + + + <%def name="main()">
@@ -23,7 +27,7 @@ ${_('RSS feed')}
  • - ${_('ATOM feed')} + ${_('ATOM feed')}
  • diff -r 708f70d4f8ef -r 6bef2a9f73e2 rhodecode/templates/journal/public_journal.html --- a/rhodecode/templates/journal/public_journal.html Thu Jun 07 13:09:59 2012 +0200 +++ b/rhodecode/templates/journal/public_journal.html Thu Jun 07 14:23:28 2012 +0200 @@ -9,32 +9,35 @@ <%def name="page_nav()"> ${self.menu('home')} +<%def name="head_extra()"> + + + <%def name="main()"> -
    - -
    -
    ${_('Public Journal')}
    - - -
    - -
    ${c.journal_data}
    -
    +
    + +
    +
    ${_('Public Journal')}
    + +
    + +
    ${c.journal_data}
    +
    diff -r 708f70d4f8ef -r 6bef2a9f73e2 rhodecode/templates/summary/summary.html --- a/rhodecode/templates/summary/summary.html Thu Jun 07 13:09:59 2012 +0200 +++ b/rhodecode/templates/summary/summary.html Thu Jun 07 14:23:28 2012 +0200 @@ -16,6 +16,11 @@ ${self.menu('summary')} +<%def name="head_extra()"> + + + + <%def name="main()"> <% summary = lambda n:{False:'summary-short'}.get(n)