templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Mon, 16 Feb 2009 03:25:00 +0200
changeset 137 a25d1bf758e6
parent 71 e909bde831e7
permissions -rw-r--r--
moar pimping of the error page... at this point, error messages are becoming more of a feature than a bug
42
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 29
diff changeset
     1
<%inherit file="layout.tmpl" />
29
b06ff4c05d42 start prototyping some site-based code
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     2
59
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 46
diff changeset
     3
<div id="title">Available Channels</div>
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 46
diff changeset
     4
42
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 29
diff changeset
     5
<ul>
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 29
diff changeset
     6
% for channel in channel_list :
71
e909bde831e7 fix index.tmpl, and change tz_name to %Z%z format
Tero Marttila <terom@fixme.fi>
parents: 59
diff changeset
     7
    <li><a href="${urls.channel.build(req, channel=channel)}">${channel.title}</a></li>
42
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 29
diff changeset
     8
% endfor
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 29
diff changeset
     9
</ul>
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 29
diff changeset
    10