summaryrefslogtreecommitdiff
path: root/templates/frontpage.tmpl
blob: 53b3da00ac049fa7a812a7c4f611208f074e2293 (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
29
30
31
32
33
34
#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>
  <ul>
   <li><span class="url">$conf.root_url/package/&lt;p&gt;</span>
   - search for package p</li>
   <li><span class="url">$conf.root_url/package/&lt;p&gt;/&lt;v&gt;</span>
   - go directly to the page for package p, version v</li>
  </ul>
 <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 / Package search</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