summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..aa832ad
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,34 @@
+<!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 %}{% endblock %}</title>
+ <link rel="stylesheet" type="text/css"
+ href="/static/css/patches.css"/>
+ </head>
+ <body>
+ <div class="pageheader">
+ <img alt="[patchlogo]" src="/static/img/swirlpatch.png"/>
+ <p> <a href="/">Debian patch tracking system </a> </p>
+ <div class="breadcrumb">
+ {% for crumb in crumbs %}
+ {{ crumb }}
+ {% endfor %}
+ </div> <!-- breadcrumb -->
+ </div>
+ {% block content %}{% endblock %}
+ <div class="pagefooter">
+ page code/design/content is copyright (c) 2008 sean finney
+ &lt;seanius@debian.org&gt;. <br/>
+ patches viewed/retrieved through this system are copyrighted by
+ their respective authors. <br/>
+ <a href="http://git.debian.org/?p=users/seanius/patch-tracker.git">
+ browse git repo
+ </a>
+ -
+ <a href="http://git.debian.org/git/users/seanius/patch-tracker.git">
+ clone git repo
+ </a>
+ </div> <!-- pagefooter -->
+ </body>
+</html>