##// END OF EJS Templates
old style: don't reserve space for icons - they will have take the space they need
old style: don't reserve space for icons - they will have take the space they need

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4144:962f7535 rhodecode-2.2.5-gpl
Show More
public_journal.html
37 lines | 996 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()">
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ${_('Public Journal')}
%if c.rhodecode_name:
&middot; ${c.rhodecode_name}
%endif
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>
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 <span>
<a href="${h.url('public_journal_atom')}"> <i class="icon-rss-sign" style="color: #fa9b39"></i></a>
</span>
added discoverable rss/atom links in pages
r2413 </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>