##// END OF EJS Templates
moved the instance id after version, beeing at the end looks odd, and confusing.
moved the instance id after version, beeing at the end looks odd, and confusing.

File last commit:

r3582:1f334a68 beta
r3689:b20eacde beta
Show More
public_journal.html
32 lines | 992 B | text/html | HtmlLexer
implemented public journal for anonymous users, admin can control which repositories...
r1085 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
improved title consistency...
r3582 ${_('Public Journal')} &middot; ${c.rhodecode_name}
implemented public journal for anonymous users, admin can control which repositories...
r1085 </%def>
<%def name="breadcrumbs()">
Mads Kiilerich
html: don't use tabs
r3197 ${c.rhodecode_name}
implemented public journal for anonymous users, admin can control which repositories...
r1085 </%def>
<%def name="page_nav()">
Set current pages indication for search and journal
r3208 ${self.menu('journal')}
implemented public journal for anonymous users, admin can control which repositories...
r1085 </%def>
added discoverable rss/atom links in pages
r2413 <%def name="head_extra()">
<link href="${h.url('public_journal_atom')}" rel="alternate" title="${_('ATOM public journal feed')}" type="application/atom+xml" />
<link href="${h.url('public_journal_rss')}" rel="alternate" title="${_('RSS public journal feed')}" type="application/rss+xml" />
</%def>
implemented public journal for anonymous users, admin can control which repositories...
r1085 <%def name="main()">
White-space cleanup
r1888
added discoverable rss/atom links in pages
r2413 <div class="box">
<!-- box / title -->
<div class="title">
<h5>${_('Public Journal')}</h5>
<ul class="links">
<li>
<span><a href="${h.url('public_journal_atom')}"><img class="icon" title="${_('ATOM feed')}" alt="${_('ATOM feed')}" src="${h.url('/images/icons/rss_16.png')}"/></a></span>
</li>
</ul>
</div>
new tooltip implementation...
r2971
added discoverable rss/atom links in pages
r2413 <div id="journal">${c.journal_data}</div>
</div>
White-space cleanup
r1888
</%def>