templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Mon, 09 Feb 2009 01:11:05 +0200
changeset 51 07ca28f3a9f2
parent 46 185504387370
child 59 8ec729c5d998
permissions -rw-r--r--
use improved URLConfig/URLType
<%inherit file="layout.tmpl" />

<h1>Available Channels</h1>
<ul>
% for channel in channel_list :
    <li><a href="${urls.channel_view.build(req, channel=channel.id)}">${channel.title}</a></li>
% endfor
</ul>