summaryrefslogtreecommitdiff
path: root/templates/frontpage.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/frontpage.tmpl')
-rw-r--r--templates/frontpage.tmpl19
1 files changed, 8 insertions, 11 deletions
diff --git a/templates/frontpage.tmpl b/templates/frontpage.tmpl
index 6bf9b34..e283f98 100644
--- a/templates/frontpage.tmpl
+++ b/templates/frontpage.tmpl
@@ -1,17 +1,14 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html>
- <head>
- <title> Debian Project patch tracking system </title>
- <link rel="stylesheet" type="text/css" href="$conf.root_url/css/patches.css"/>
- </head>
-<body>
+#import templates
+#extends templates.skeleton
+#def title
+Debian Project patch tracking system
+#end def
+#def body
<h1>Debian Project patch tracking system</h1>
- <h2>Browse patches by package name</h2>
+ <h2>Browse patches by package name</h2>
#for $k in $allindex.pkgs.iterkeys()
#if $allindex.pkgs[$k]
<a href="index/$k">$k</a>
#end if
#end for
- </body>
-</html>
+#end def