templates/index.tmpl
changeset 59 8ec729c5d998
parent 46 185504387370
child 71 e909bde831e7
equal deleted inserted replaced
58:ce028d356e1f 59:8ec729c5d998
     1 <%inherit file="layout.tmpl" />
     1 <%inherit file="layout.tmpl" />
     2 
     2 
     3 <h1>Available Channels</h1>
     3 <div id="title">Available Channels</div>
       
     4 
     4 <ul>
     5 <ul>
     5 % for channel in channel_list :
     6 % for channel in channel_list :
     6     <li><a href="${urls.channel_view.build(req, channel=channel.id)}">${channel.title}</a></li>
     7     <li><a href="${urls.channel_view.build(req, channel=channel)}">${channel.title}</a></li>
     7 % endfor
     8 % endfor
     8 </ul>
     9 </ul>
     9 
    10