templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Wed, 11 Feb 2009 03:32:21 +0200
changeset 98 8c6e36849f9a
parent 71 e909bde831e7
permissions -rw-r--r--
implement tempfile use for scripts/search-index autoload, so that it can resume aborted sessions
<%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>