Mercurial > hg > discussions
comparison discusssions/templates/index.html @ 0:c904249afb04
initial commit of discussions
author | k0s <k0scist@gmail.com> |
---|---|
date | Sat, 02 Jan 2010 13:36:23 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c904249afb04 |
---|---|
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 xmlns:xi="http://www.w3.org/2001/XInclude"> | |
7 <!-- index of conferences --> | |
8 <head> | |
9 <title>${name}</title> | |
10 <script src="${link('jquery.js')}"></script> | |
11 </head> | |
12 <body> | |
13 <xi:include href="navigation.html" /> | |
14 <ul> | |
15 <li py:for="forum in forums"> | |
16 <img py:if="'image' in forum" src="${forum['image']}"><a href="${forum['path']}>${forum['subject']}</a> | |
17 </li> | |
18 | |
19 <li py:for="discussions in discssions"> | |
20 </li> | |
21 </body> | |
22 </html> |