summaryrefslogtreecommitdiff
path: root/templates/frontpage.tmpl
blob: 37a47944283994dcc3b2e9d3428c28cd915c5a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#import templates
#extends templates.skeleton
#def title
Debian Project patch tracking system
#end def
#def body
 <h1>Debian Project patch tracking system</h1>
 <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 $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