Mercurial > hg-website
comparison hgscm/templates/base.html @ 26:b3d9cbb33d54
adding basic django project, just renders the frontpage right now
author | Jesper Noehr <jesper@noehr.org> |
---|---|
date | Sun, 15 Feb 2009 19:58:03 +0100 |
parents | |
children | 7276388fc71b |
comparison
equal
deleted
inserted
replaced
22:f09aa2a0e4c8 | 26:b3d9cbb33d54 |
---|---|
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
2 "http://www.w3.org/TR/html4/loose.dtd"> | |
3 <html> | |
4 <head> | |
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
6 <link href="{{ MEDIA_URL }}css/styles.css" type="text/css" rel="stylesheet"> | |
7 <script type="text/javascript" src="{{ MEDIA_URL }}javascript/typeface.js"></script> | |
8 <script type="text/javascript" src="{{ MEDIA_URL }}javascript/optimer_regular.typeface.js"></script> | |
9 <title>Mercurial</title> | |
10 </head> | |
11 <body id="home"> | |
12 | |
13 <h1 id="logo"><a href="/">mercurial</a></h1> | |
14 | |
15 <ul id="nav" class="typeface-js"> | |
16 <li><a href="javascript:void(0);">about</a></li> | |
17 <li><a href="javascript:void(0);">download</a></li> | |
18 <li><a href="javascript:void(0);">extensions</a></li> | |
19 <li><a href="javascript:void(0);">docs</a></li> | |
20 <li><a href="javascript:void(0);">community</a></li> | |
21 </ul> | |
22 | |
23 <form id="search" method="post" action="index.html"> | |
24 <fieldset> | |
25 <legend>Search form</legend> | |
26 <label for="keyword">keyword</label> | |
27 <input class="text" type="text" name="keyword" id="keyword"> | |
28 <input class="submit" type="submit" value="search"> | |
29 </fieldset> | |
30 </form> | |
31 | |
32 <div id="content"> | |
33 | |
34 {% block content %} | |
35 | |
36 No content on this page yet. | |
37 | |
38 {% endblock %} | |
39 | |
40 </div> | |
41 | |
42 <div id="footer"> | |
43 design by <a href="http://www.designpunct.ro">punct</a> / | |
44 design courtesy of <a href="http://www.bitbucket.org/">bitbucket</a> / | |
45 licensed under <a href="http://www.gnu.org/licenses/gpl-2.0.txt">GPLv2</a> | |
46 </div> | |
47 | |
48 </body> | |
49 </html> |