templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Sun, 13 Sep 2009 01:15:56 +0300
changeset 140 6db2527b67cf
parent 71 e909bde831e7
permissions -rw-r--r--
restructure into package format - the qmsk.* stuff doesn't work so well though, requires a symlink for qmsk.web to work...
<%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>