summaryrefslogtreecommitdiff
path: root/templates/frontpage.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/frontpage.tmpl')
-rw-r--r--templates/frontpage.tmpl30
1 files changed, 20 insertions, 10 deletions
diff --git a/templates/frontpage.tmpl b/templates/frontpage.tmpl
index 5cb7fcc..17ddbd9 100644
--- a/templates/frontpage.tmpl
+++ b/templates/frontpage.tmpl
@@ -5,14 +5,24 @@ Debian Project patch tracking system
#end def
#def body
<h1>Debian Project patch tracking system</h1>
- <h2>Browse patches by package name</h2>
- <table class="patchlisting">
- <tr><th>index</th><th># packages</th></tr>
-#for $k,$v in $allindex.indices
- <tr>
- <td><a href="index/$k">$k</a></td>
- <td>$v</td>
- </tr>
-#end for
- </table>
+ <h2>Introduction</h2>
+ <p>
+ This site is used to track/visualize the changes made in the source code
+ of software packaged in the debian distribution.
+ </p>
+ <h2>Quick access</h2>
+ <h3>Browse patches by package name</h3>
+#set $links = [ "<a href=\"index/"+k+"\">"+k+"</a>" for k in $allindex.indices ]
+#set $out = " - ".join($links)
+ <div class="quicklinks">
+ $out
+ </div>
+ <h3>Jump to package</h3>
+ <div class="framed">
+ <form name="jumper" action="/jump" method="post">
+ <input type="text" name="package" />
+ <input type="submit" name="submit" />
+ </form>
+ </div>
+
#end def