diff options
author | Helmut Grohne <helmut@subdivi.de> | 2013-08-02 08:40:49 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2013-08-02 08:40:49 +0200 |
commit | cb3708825bf7ea32314040575cef35980dad0cd8 (patch) | |
tree | 31575a8525dc90ba6904268d94f47e1604bf0557 /dedup/templates/base.html | |
parent | a4bbbb6e664e605634cb3f9e0564c7e4a93697be (diff) | |
parent | 2712edb550968ce7ec8cd9800241d7944666631a (diff) | |
download | debian-dedup-cb3708825bf7ea32314040575cef35980dad0cd8.tar.gz |
Merge branch master into sqlalchemy
This makes the sqlalchemy branch schema-compatible with master again.
The biggest change on master was the introduction of the function table.
It caused most of the conflicts. Note that webapp had one conflict not
detected by git: The selecting of issues in show_package needed
sqlalchemy conversion.
Conflicts:
README
update_sharing.py
webapp.py
Diffstat (limited to 'dedup/templates/base.html')
-rw-r--r-- | dedup/templates/base.html | 22 |
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..62f4087 --- /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="https://wiki.debian.org/dedup.debian.net">see wiki</a></li> + <li>Maintainer: Helmut Grohne <helmut@subdivi.de></li> + <li>Source: git://murkel.subdivi.de/~helmut/debian-dedup.git</li> + <li>Bugs reports / Feedback / Patches: to the maintainer</li> +</ul> + </body> +</html> |