blob: 9dfb78837e741f5eda16ab34ebce9e48f1b359ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 }}/static/style.css">
<link rel="icon" type="image/vnd.microsoft.icon" href="{{ urlroot|e }}/static/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>
|