Files
@ bbaab7501c1a
Branch filter:
Location: kallithea/pylons_app/templates/base/base.html - annotation
bbaab7501c1a
995 B
text/html
Added custom templates, did over check of code to make it work.
Added templating for add repository, and styling. App globals now handles our custom static files. (logo etc can be changed)
Added templating for add repository, and styling. App globals now handles our custom static files. (logo etc can be changed)
564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 | ## -*- 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>
<style type="text/css">
</style>
<title>${next.page_title()}</title>
<meta name="author" content=""/>
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="shortcut icon" type="image/x-icon" href="/images/sample.ico"/>
<script src="/css_browser_selector.js" type="text/javascript"></script>
<script type="text/javascript" src="/js/yui/utilities/utilities.js"></script>
<link rel="stylesheet" type="text/css" href="/css/style.css"/>
</head>
<body>
<div id="top-glow"></div>
<div id="container">
${next.body()}
<div id="footer" class="clearfix">
${next.footer()}
</div><!-- /footer -->
</div><!-- /container -->
<div id="bottom-glow"></div>
</body>
</html>
|