templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Mon, 09 Feb 2009 14:07:19 +0200
changeset 71 e909bde831e7
parent 59 8ec729c5d998
permissions -rw-r--r--
fix index.tmpl, and change tz_name to %Z%z format
<%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>