annotate bitsyblog/templates/index.html @ 20:1554cb56aa2f

got index working, just doesnt do anything
author k0s <k0scist@gmail.com>
date Sun, 25 Oct 2009 21:36:33 -0400
parents 67c2ccaef869
children 9be583a7731d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20
1554cb56aa2f got index working, just doesnt do anything
k0s <k0scist@gmail.com>
parents: 8
diff changeset
1 <!DOCTYPE html
1554cb56aa2f got index working, just doesnt do anything
k0s <k0scist@gmail.com>
parents: 8
diff changeset
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
1554cb56aa2f got index working, just doesnt do anything
k0s <k0scist@gmail.com>
parents: 8
diff changeset
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1554cb56aa2f got index working, just doesnt do anything
k0s <k0scist@gmail.com>
parents: 8
diff changeset
4 <html xmlns="http://www.w3.org/1999/xhtml"
1554cb56aa2f got index working, just doesnt do anything
k0s <k0scist@gmail.com>
parents: 8
diff changeset
5 xmlns:py="http://genshi.edgewall.org/"
1554cb56aa2f got index working, just doesnt do anything
k0s <k0scist@gmail.com>
parents: 8
diff changeset
6 xmlns:xi="http://www.w3.org/2001/XInclude">
8
67c2ccaef869 adding templates for future use with genshi
k0s <k0scist@gmail.com>
parents:
diff changeset
7 <head>
20
1554cb56aa2f got index working, just doesnt do anything
k0s <k0scist@gmail.com>
parents: 8
diff changeset
8 <title>${site_name}</title>
1554cb56aa2f got index working, just doesnt do anything
k0s <k0scist@gmail.com>
parents: 8
diff changeset
9 <link href="${link(request, 'css/site.css')}" type="text/css" rel="stylsheet" title="Default"/>
8
67c2ccaef869 adding templates for future use with genshi
k0s <k0scist@gmail.com>
parents:
diff changeset
10 </head>
67c2ccaef869 adding templates for future use with genshi
k0s <k0scist@gmail.com>
parents:
diff changeset
11 <body>
20
1554cb56aa2f got index working, just doesnt do anything
k0s <k0scist@gmail.com>
parents: 8
diff changeset
12 <xi:include href="navigation.html" />
1554cb56aa2f got index working, just doesnt do anything
k0s <k0scist@gmail.com>
parents: 8
diff changeset
13
1554cb56aa2f got index working, just doesnt do anything
k0s <k0scist@gmail.com>
parents: 8
diff changeset
14 <h1 py:if="logo"><img src="${logo}" alt="${site_name}"/></h1>
8
67c2ccaef869 adding templates for future use with genshi
k0s <k0scist@gmail.com>
parents:
diff changeset
15 </body>
67c2ccaef869 adding templates for future use with genshi
k0s <k0scist@gmail.com>
parents:
diff changeset
16 </html>