sites/irclogs.qmsk.net/templates/index.tmpl
changeset 46 185504387370
parent 45 e94ab812c0c8
child 47 3d59c9eeffaa
equal deleted inserted replaced
45:e94ab812c0c8 46:185504387370
     1 <%inherit file="layout.tmpl" />
       
     2 
       
     3 <h1>Available Channels</h1>
       
     4 <ul>
       
     5 % for channel in channel_list :
       
     6     <li><a href="${urls.channel_view.build(req, channel=channel.id)}">${channel.title}</a></li>
       
     7 % endfor
       
     8 </ul>
       
     9