templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Sun, 08 Feb 2009 04:41:00 +0200
changeset 48 7858b7b8ffe3
parent 46 185504387370
child 59 8ec729c5d998
permissions -rw-r--r--
fix bugs with file tailing
<%inherit file="layout.tmpl" />

<h1>Available Channels</h1>
<ul>
% for channel in channel_list :
    <li><a href="${urls.channel_view.build(req, channel=channel.id)}">${channel.title}</a></li>
% endfor
</ul>