Files
@ 3ac4350b7848
Branch filter:
Location: kallithea/pylons_app/templates/base/base.html - annotation
3ac4350b7848
2.7 KiB
text/html
Html updates and fixes
564e40829f80 564e40829f80 564e40829f80 564e40829f80 8b06c420491d d924b931b488 01d0f363f36d 01d0f363f36d 9fe23fdab9e9 564e40829f80 564e40829f80 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 25e01cb65282 d924b931b488 d924b931b488 3ac4350b7848 3ac4350b7848 3ac4350b7848 d924b931b488 3cf0603cd4f5 d924b931b488 564e40829f80 d924b931b488 d924b931b488 d924b931b488 8b06c420491d d924b931b488 d924b931b488 564e40829f80 d924b931b488 d924b931b488 d924b931b488 d924b931b488 564e40829f80 d924b931b488 d924b931b488 9fe23fdab9e9 9fe23fdab9e9 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 25e01cb65282 01d0f363f36d 2dc0c8e4f384 01d0f363f36d 9fe23fdab9e9 9fe23fdab9e9 9fe23fdab9e9 9fe23fdab9e9 | ## -*- coding: utf-8 -*-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="icon" href="/images/hgicon.png" type="image/png" />
<meta name="robots" content="index, nofollow"/>
<title>${next.title()}</title>
${self.css()}
${self.js()}
</head>
<body>
<div id="container">
<div class="page-header">
<h1>
${next.breadcrumbs()}
</h1>
<ul class="page-nav">
${self.page_nav()}
</ul>
</div>
<div id="main">
${next.main()}
</div>
<div class="page-footer">
Mercurial App © 2010
</div>
<div id="powered-by">
<p>
<a href="http://mercurial.selenic.com/" title="Mercurial">
<img src="/images/hglogo.png" width="75" height="90" alt="mercurial"/></a>
</p>
</div>
<div id="corner-top-left"></div>
<div id="corner-top-right"></div>
<div id="corner-bottom-left"></div>
<div id="corner-bottom-right"></div>
</div>
</body>
</html>
<%def name="page_nav()">
${self.menu()}
</%def>
<%def name="menu(current)">
<ul class="page-nav">
<li
%if current=='summary':
class='current'
%endif
>${h.link_to_unless(current=='summary',_('summary'),h.url('summary_home',repo_name=c.repo_name))}</li>
<li
%if current=='changelog':
class='current'
%endif
>${h.link_to_unless(current=='changelog',_('changelog'),h.url('changelog_home',repo_name=c.repo_name))}</li>
<li
%if current=='branches':
class='current'
%endif
>${h.link_to_unless(current=='branches',_('branches'),h.url('branches_home',repo_name=c.repo_name))}</li>
<li
%if current=='tags':
class='current'
%endif
>${h.link_to_unless(current=='tags',_('tags'),h.url('tags_home',repo_name=c.repo_name))}</li>
<li
%if current=='graph':
class='current'
%endif
>${h.link_to_unless(current=='graph',_('graph'),h.url('graph_home',repo_name=c.repo_name))}</li>
<li
%if current=='files':
class='current'
%endif
>${h.link_to_unless(current=='files',_('files'),h.url('files_home',repo_name=c.repo_name))}</li>
</ul>
</%def>
<%def name="css()">
<link rel="stylesheet" href="/css/monoblue_custom.css" type="text/css" />
</%def>
<%def name="js()">
<script type="text/javascript" src="/js/yui/utilities/utilities.js"></script>
</%def>
|