templates/index.tmpl
author Tero Marttila <terom@fixme.fi>
Mon, 16 Feb 2009 00:54:25 +0200
changeset 132 0e857c4a67de
parent 71 e909bde831e7
permissions -rw-r--r--
cache version across calls to version_mercurial, so as to avoid opening the repo every time
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