Mercurial > hg > martINI
comparison martini/templates/index.html @ 0:3c3522ce6e3a
initial import of martINI from https://svn.openplans.org/svn/standalone/martINI/
author | k0s <k0scist@gmail.com> |
---|---|
date | Tue, 08 Dec 2009 15:13:28 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:3c3522ce6e3a |
---|---|
1 <!DOCTYPE html | |
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
4 <html xmlns="http://www.w3.org/1999/xhtml" | |
5 xmlns:py="http://genshi.edgewall.org/"> | |
6 <head> | |
7 <title>${request.path_info}</title> | |
8 </head> | |
9 <body> | |
10 <h1>${request.path_info}</h1> | |
11 <ul> | |
12 <li py:for="item in sorted(items)"> | |
13 <a href="${request.path_info.rstrip('/')}/${item}">${item}</a> | |
14 </li> | |
15 </ul> | |
16 </body> | |
17 </html> |