Files
@ 928416088790
Branch filter:
Location: kallithea/pylons_app/templates/base/base.html - annotation
928416088790
1.3 KiB
text/html
reimplemented summary page,
added few filters, removed age from models and made it as filter.
added few filters, removed age from models and made it as filter.
564e40829f80 cdf4fda66dd9 cdf4fda66dd9 cdf4fda66dd9 564e40829f80 564e40829f80 564e40829f80 d924b931b488 d924b931b488 d924b931b488 d924b931b488 9fe23fdab9e9 564e40829f80 564e40829f80 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 3cf0603cd4f5 d924b931b488 564e40829f80 d924b931b488 d924b931b488 d924b931b488 73f413946c14 d924b931b488 d924b931b488 564e40829f80 d924b931b488 d924b931b488 d924b931b488 d924b931b488 564e40829f80 d924b931b488 d924b931b488 9fe23fdab9e9 9fe23fdab9e9 9fe23fdab9e9 9fe23fdab9e9 9fe23fdab9e9 9fe23fdab9e9 | ## -*- coding: utf-8 -*-
##filters definition
<%namespace name="f" module="pylons_app.lib.filters" inheritable="True"/>
<!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="${c.staticurl}hgicon.png" type="image/png" />
<meta name="robots" content="index, nofollow"/>
<link rel="stylesheet" href="${c.staticurl}style-monoblue.css" type="text/css" />
<title>${next.title()}</title>
${self.js()}
</head>
<body>
<div id="container">
<div class="page-header">
<h1>
${next.breadcrumbs()}
</h1>
<ul class="page-nav">
${next.page_nav()}
</ul>
</div>
${next.main()}
<div class="page-footer">
Mercurial App © 2010
</div>
<div id="powered-by">
<p>
<a href="http://mercurial.selenic.com/" title="Mercurial">
<img src="${c.staticurl}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="js()">
<script type="text/javascript" src="/js/yui/utilities/utilities.js"></script>
</%def>
|