templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Tue, 10 Feb 2009 03:22:43 +0200
changeset 80 a0662cff1d9d
parent 71 e909bde831e7
permissions -rw-r--r--
add RSSFormatter, and link to different types from channel_last.tmpl...
<%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>