templates/index.tmpl
changeset 46 185504387370
parent 42 5a72c00c4ae4
child 59 8ec729c5d998
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/index.tmpl	Sun Feb 08 03:23:25 2009 +0200
@@ -0,0 +1,9 @@
+<%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>
+