diff templates/base.html @ 248:53a5e100b497

Convert the frontpage, except for the download button.
author Steve Losh <steve@stevelosh.com>
date Wed, 23 Sep 2009 20:34:42 -0400
parents
children 3efd1dcf92c7
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/base.html	Wed Sep 23 20:34:42 2009 -0400
@@ -0,0 +1,55 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+       "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+        <link href="/css/styles.css" type="text/css" rel="stylesheet">
+        <script type="text/javascript" src="/javascript/typeface.js"></script>
+        <script type="text/javascript" src="/javascript/optimer_regular.typeface.js"></script>
+        <link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico">
+
+        <title>Mercurial SCM</title>
+    </head>
+    <body id="home">
+        <h1 id="logo"><a href="/">mercurial</a></h1>
+            
+        <ul id="nav" class="typeface-js">
+            <li><a href="/about/">about</a></li>
+            <li><a href="/guide/">guide</a></li>
+            <li><a href="/downloads/">download</a></li>
+            <li><a href="http://www.selenic.com/mercurial/wiki/UsingExtensions">extensions</a></li>
+            <li><a href="http://www.selenic.com/mercurial">docs/news</a></li>
+        </ul>
+        
+        <form id="search" method="get" action="http://mercurial.selenic.com/wiki/Mercurial">
+        <input type="hidden" name="action" value="fullsearch">
+        <input type="hidden" name="context" value="180">
+            <fieldset>
+                <legend>Search form</legend>
+                <label for="keyword">keyword</label>
+                <input class="text" type="text" name="value"
+                value="Search the Wiki" id="keyword">
+                <input class="submit" type="submit" value="Title"
+                name="titlesearch" alt="Search Titles"> 
+            </fieldset>
+        </form>
+        
+        <div id="content">
+
+            {% block content %}
+            
+                No content on this page yet.
+            
+            {% endblock %}
+
+        </div>
+        
+        <div id="footer">
+            design by <a href="http://www.designpunct.ro">punct</a> /
+            design courtesy of <a href="http://www.bitbucket.org/">bitbucket</a> /
+            licensed under <a href="http://www.gnu.org/licenses/gpl-2.0.txt">GPLv2</a> /
+            <a href="/about-page/">about this page</a>
+        </div>
+        
+    </body>
+</html>