comparison pylons_app/templates/add.html @ 20:bbaab7501c1a

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)
author Marcin Kuzminski
date Sun, 28 Feb 2010 01:52:38 +0100
parents
children 8b06c420491d
comparison
equal deleted inserted replaced
19:38235b614e3f 20:bbaab7501c1a
1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <link rel="icon" href="${c.staticurl}hgicon.png" type="image/png" />
6 <meta name="robots" content="index, nofollow"/>
7 <link rel="stylesheet" href="${c.staticurl}style-monoblue.css" type="text/css" />
8 <title> Mercurial repositories add</title>
9 </head>
10
11 <body>
12 <div id="container">
13 <div class="page-header">
14 <h1><a href="/">Home</a> / Admin</h1>
15 <ul class="page-nav">
16 </ul>
17 </div>
18 <table cellspacing="0">
19 <tr>
20 <td><h1>${c.msg}</h1></td>
21 </tr>
22 <tr>
23 <td><h2>${c.new_repo}</h2></td>
24 </tr>
25 </table>
26 <div class="page-footer">
27 Mercurial Repository: admin
28 </div>
29
30 <div id="powered-by">
31 <p>
32 <a href="http://mercurial.selenic.com/" title="Mercurial">
33 <img src="${c.staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a>
34 </p>
35 </div>
36
37 <div id="corner-top-left"></div>
38 <div id="corner-top-right"></div>
39 <div id="corner-bottom-left"></div>
40 <div id="corner-bottom-right"></div>
41
42 </div>
43 </body>
44 </html>
45