templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Tue, 10 Feb 2009 05:56:57 +0200
changeset 83 a34e9f56ddda
parent 71 e909bde831e7
permissions -rw-r--r--
improve parser resilience, improve get_month_days, add 'Channel' item to general menu
<%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>