templates/index.tmpl
changeset 143 154d2d8ae9c0
parent 142 e163794ccf54
child 144 35c4c56f1376
equal deleted inserted replaced
142:e163794ccf54 143:154d2d8ae9c0
     1 <%inherit file="layout.tmpl" />
       
     2 
       
     3 <div id="title">Available Channels</div>
       
     4 
       
     5 <ul>
       
     6 % for channel in channel_list :
       
     7     <li><a href="${urls.channel.build(req, channel=channel)}">${channel.title}</a></li>
       
     8 % endfor
       
     9 </ul>
       
    10