templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Wed, 11 Feb 2009 21:50:03 +0200
changeset 108 d0aca7894fc5
parent 71 e909bde831e7
permissions -rw-r--r--
split out helpers._render_type, and add support for ?type= to various other handlers... still needs more work, though
<%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>