annotate hgscm/templates/base.html @ 222:101601f15bf5

Remove developing notice bar
author David Soria Parra <dsp@php.net>
date Fri, 10 Jul 2009 11:34:22 +0200
parents 7ba358bcf795
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
2 "http://www.w3.org/TR/html4/loose.dtd">
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
3 <html>
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
4 <head>
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
6 <link href="{{ MEDIA_URL }}css/styles.css" type="text/css" rel="stylesheet">
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
7 <script type="text/javascript" src="{{ MEDIA_URL }}javascript/typeface.js"></script>
75
e8119809dfab Add favicon
David Soria Parra <dsp@php.net>
parents: 70
diff changeset
8 <script type="text/javascript" src="{{ MEDIA_URL }}javascript/optimer_regular.typeface.js"></script>
e8119809dfab Add favicon
David Soria Parra <dsp@php.net>
parents: 70
diff changeset
9 <link rel="shortcut icon" type="image/x-icon" href="{{ MEDIA_URL }}images/favicon.ico">
e8119809dfab Add favicon
David Soria Parra <dsp@php.net>
parents: 70
diff changeset
10
47
5cbab8b1194c templates: Use "Mercurial SCM" as a title
David Soria Parra <dsp@php.net>
parents: 46
diff changeset
11 <title>Mercurial SCM</title>
26
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
12 </head>
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
13 <body id="home">
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
14 <h1 id="logo"><a href="/">mercurial</a></h1>
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
15
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
16 <ul id="nav" class="typeface-js">
46
2c9642c7fa43 templates: Use url helper to provide the right link
David Soria Parra <dsp@php.net>
parents: 45
diff changeset
17 <li><a href="{% url about %}">about</a></li>
170
6ebe8ec48a77 Work on the front page. Now we only need the quick_start, the testimonies for ease of use and the projects_using_mercurial - TODO: Check if we can find a nice svn transition guide.
Arne Babenhauserheide <bab@draketo.de>
parents: 82
diff changeset
18 <li><a href="{% url workflow_guide %}">guide</a></li>
70
bef09338eceb downloads: add initial handling for downloads
David Soria Parra <dsp@php.net>
parents: 65
diff changeset
19 <li><a href="{% url downloads %}">download</a></li>
170
6ebe8ec48a77 Work on the front page. Now we only need the quick_start, the testimonies for ease of use and the projects_using_mercurial - TODO: Check if we can find a nice svn transition guide.
Arne Babenhauserheide <bab@draketo.de>
parents: 82
diff changeset
20 <li><a href="http://www.selenic.com/mercurial/wiki/UsingExtensions">extensions</a></li>
212
2e9f9bc797f6 renamed docs into docs/news
Arne Babenhauserheide <bab@draketo.de>
parents: 170
diff changeset
21 <li><a href="http://www.selenic.com/mercurial">docs/news</a></li>
26
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
22 </ul>
218
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
23 <!-- original Search form:
45
7276388fc71b about: integrate about page in django version
David Soria Parra <dsp@php.net>
parents: 26
diff changeset
24 <form id="search" method="post" action="search/">
26
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
25 <fieldset>
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
26 <legend>Search form</legend>
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
27 <label for="keyword">keyword</label>
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
28 <input class="text" type="text" name="keyword" id="keyword">
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
29 <input class="submit" type="submit" value="search">
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
30 </fieldset>
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
31 </form>
218
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
32 -->
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
33 <!-- Search form for the wiki -->
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
34 <form id="search" method="get" action="http://mercurial.selenic.com/wiki/Mercurial">
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
35 <input type="hidden" name="action" value="fullsearch">
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
36 <input type="hidden" name="context" value="180">
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
37 <fieldset>
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
38 <legend>Search form</legend>
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
39 <label for="keyword">keyword</label>
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
40 <input class="text" type="text" name="value"
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
41 value="Search the Wiki" id="keyword">
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
42 <input class="submit" type="submit" value="Title"
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
43 name="titlesearch" alt="Search Titles">
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
44 </fieldset>
7ba358bcf795 Changed the search form to search the wiki.
Arne Babenhauserheide <bab@draketo.de>
parents: 212
diff changeset
45 </form>
26
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
46
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
47 <div id="content">
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
48
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
49 {% block content %}
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
50
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
51 No content on this page yet.
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
52
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
53 {% endblock %}
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
54
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
55 </div>
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
56
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
57 <div id="footer">
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
58 design by <a href="http://www.designpunct.ro">punct</a> /
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
59 design courtesy of <a href="http://www.bitbucket.org/">bitbucket</a> /
65
57ece5687f92 Add 'about this page' site
David Soria Parra <dsp@php.net>
parents: 47
diff changeset
60 licensed under <a href="http://www.gnu.org/licenses/gpl-2.0.txt">GPLv2</a> /
57ece5687f92 Add 'about this page' site
David Soria Parra <dsp@php.net>
parents: 47
diff changeset
61 <a href="{% url thepage %}">about this page</a>
26
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
62 </div>
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
63
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
64 </body>
b3d9cbb33d54 adding basic django project, just renders the frontpage right now
Jesper Noehr <jesper@noehr.org>
parents:
diff changeset
65 </html>