summaryrefslogtreecommitdiff
path: root/dedup/templates/base.html
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2013-07-27 09:32:03 +0200
committerHelmut Grohne <helmut@subdivi.de>2013-07-27 09:32:03 +0200
commit0c27c95a9c55b82b2c7e5e90b885c87578e895d0 (patch)
treef7b501e59dc15764a84ef9758f5b597e497719cf /dedup/templates/base.html
parent03e7e27b440917081369e797e09de975912cb68c (diff)
downloaddebian-dedup-0c27c95a9c55b82b2c7e5e90b885c87578e895d0.tar.gz
move templates to dedup package
They cluttered webapp.py and now vim can give proper highlighting for the templates.
Diffstat (limited to 'dedup/templates/base.html')
-rw-r--r--dedup/templates/base.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/dedup/templates/base.html b/dedup/templates/base.html
new file mode 100644
index 0000000..4e49d47
--- /dev/null
+++ b/dedup/templates/base.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>{% block title %}{% endblock %}</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <link rel="stylesheet" type="text/css" href="{{ urlroot|e }}/style.css">
+ <link rel="icon" type="image/vnd.microsoft.icon" href="{{ urlroot|e }}/favicon.ico">
+ {% block header %}{% endblock %}
+ </head>
+ <body>
+{% block content %}
+{% endblock %}
+<hr>
+<h4>Details about this service</h4>
+<ul>
+ <li>More information: <a href="http://wiki.debian.org/dedup.debian.net">see wiki</a></li>
+ <li>Maintainer: Helmut Grohne &lt;helmut@subdivi.de&gt;</li>
+ <li>Source: git://murkel.subdivi.de/~helmut/debian-dedup.git</li>
+ <li>Bugs reports / Feedback / Patches: to the maintainer</li>
+</ul>
+ </body>
+</html>