MercurialWebTheme

themes/mercurialweb/index.tmpl

1:975859cdcf2e
2010-06-03 Paul Boddie Fixed the table in the index template. Added a shortlog template with search box. Added escaping of repository names.
     1 {header}     2 <title>Repository Index</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>&nbsp;</td>    22     </tr>    23   </thead>    24   <tbody>    25     {entries%indexentry}    26   </tbody>    27 </table>    28     29 </div>    30     31 {footer}