summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: aa832adf68c3c46985f9ce9c857a6582fb315c2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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>