diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hgscm/templates/base.html	Sun Feb 15 19:58:03 2009 +0100
@@ -0,0 +1,49 @@
+<!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="{{ MEDIA_URL }}css/styles.css" type="text/css" rel="stylesheet">
+		<script type="text/javascript" src="{{ MEDIA_URL }}javascript/typeface.js"></script>
+		<script type="text/javascript" src="{{ MEDIA_URL }}javascript/optimer_regular.typeface.js"></script>					
+		<title>Mercurial</title>
+	</head>
+	<body id="home">
+				
+		<h1 id="logo"><a href="/">mercurial</a></h1>
+			
+		<ul id="nav" class="typeface-js">
+			<li><a href="javascript:void(0);">about</a></li>
+			<li><a href="javascript:void(0);">download</a></li>
+			<li><a href="javascript:void(0);">extensions</a></li>
+			<li><a href="javascript:void(0);">docs</a></li>
+			<li><a href="javascript:void(0);">community</a></li>
+		</ul>
+		
+		<form id="search" method="post" action="index.html">
+			<fieldset>
+				<legend>Search form</legend>
+				<label for="keyword">keyword</label>
+				<input class="text" type="text" name="keyword" id="keyword">
+				<input class="submit" type="submit" value="search">
+			</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>
+		</div>
+		
+	</body>
+</html>