templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Mon, 09 Feb 2009 06:19:12 +0200
changeset 58 ce028d356e1f
parent 46 185504387370
child 59 8ec729c5d998
permissions -rw-r--r--
special-case current month in calendar
<%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>