importing bzrfruit into git
[bzrfruit.git] / templates / index.html
blobb35ff27847352c9bdee4c3d347d6e003c30a2133
1 <html xmlns="http://www.w3.org/1999/xhtml" lang="en"
2 xmlns:py="http://genshi.edgewall.org/"
3 xmlns:xi="http://www.w3.org/2001/XInclude"
4 py:strip="">
6 <py:def function="content">
7 <h2>List of available branches</h2>
9 <p>
10 <py:for each="b in branches">
11 <div style="margin-left: 10px; padding-top: 5px;">
12 <a href="${ link_to('%s/'% b.name()) }">${b.name()}</a>
13 (${len(b.inventory().entries())} files)
14 </div>
15 </py:for>
16 </p>
18 </py:def>
20 <xi:include href="${ config['web']['skel_template'] }" />
22 </html>