templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Thu, 12 Feb 2009 00:57:39 +0200
changeset 117 f0b4097f5781
parent 71 e909bde831e7
permissions -rw-r--r--
revert to use %Y-%m-%d for URL dates again
<%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>