MercurialWebTheme

themes/mercurialweb/index.tmpl

36:ba89c5d38ceb
2011-04-05 Paul Boddie Added archives to the manifest and fixed the navigation area width. Tidied the presentation of feeds and archives on the index page. Limited annotations to 10% of the page width.
     1 {header}     2 <title>Index of repositories</title>     3 </head>     4      5 <body>     6      7 <div id="header">     8   <div id="logo"><img src="{staticurl}mercurial-logo.png" alt="Mercurial logo" /></div>     9   <div id="pageline"></div>    10 </div>    11     12 <div id="page">    13     14 <table>    15   <thead>    16     <tr>    17       <th><a href="?sort={sort_name}">Name</a></th>    18       <th><a href="?sort={sort_description}">Description</a></th>    19       <th><a href="?sort={sort_contact}">Contact</a></th>    20       <th><a href="?sort={sort_lastchange}">Last change</a></th>    21       <th></th>    22       <th></th>    23     </tr>    24   </thead>    25   <tbody>    26     {entries%indexentry}    27   </tbody>    28 </table>    29     30 </div>    31     32 {footer}