templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Sat, 14 Feb 2009 20:09:08 +0200
changeset 127 5746705a2719
parent 71 e909bde831e7
permissions -rw-r--r--
improve LogSearchIndex error handling, add explicit close() method, and modify get_index to not keep the index open persistently
<%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>