templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Mon, 16 Feb 2009 01:03:23 +0200
changeset 133 088aa2da1340
parent 71 e909bde831e7
permissions -rw-r--r--
our own CGI error handler
<%inherit file="layout.tmpl" />

<div id="title">Available Channels</div>

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