templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Mon, 09 Feb 2009 22:17:10 +0200
changeset 72 5ade0288f2ec
parent 71 e909bde831e7
permissions -rw-r--r--
implement line-links as UTC timestamps
<%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>