aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'web/templates/base.html')
-rw-r--r--web/templates/base.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/web/templates/base.html b/web/templates/base.html
new file mode 100644
index 0000000..57ff056
--- /dev/null
+++ b/web/templates/base.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html>
+ <head>
+ <title>{% block title %}Collagen - browse categories{% endblock %}</title>
+ <link rel="stylesheet" href="/collagen/media/css/main.css" type="text/css" media="screen" />
+ </head>
+ <body>
+ <div class="header">
+ {% block header %}
+ Collagen - Gentoo portage tree files database
+ {% endblock %}
+ </div>
+ <br />
+ <div class="main">
+ <div class="intro">
+ {% block intro %}
+ {% endblock %}
+ </div>
+
+
+ {% block main %}
+ How did you get here?
+ {% endblock %}
+ </div>
+ <br />
+ <div class="footer">
+ {% block footer %}
+ Gentoo Linux (c) 2009
+ {% endblock %}
+ </div>
+ </body>
+</html>