comparison 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
comparison
equal deleted inserted replaced
19:8931c5b7e632 20:1554cb56aa2f
1 <html> 1 <!DOCTYPE html
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml"
5 xmlns:py="http://genshi.edgewall.org/"
6 xmlns:xi="http://www.w3.org/2001/XInclude">
2 <head> 7 <head>
8 <title>${site_name}</title>
9 <link href="${link(request, 'css/site.css')}" type="text/css" rel="stylsheet" title="Default"/>
3 </head> 10 </head>
4 <body> 11 <body>
5 <xi:include href="site.html" /> 12 <xi:include href="navigation.html" />
6 <h1><img src="bitsyblog.png" alt="${site_name}"/></h1> 13
14 <h1 py:if="logo"><img src="${logo}" alt="${site_name}"/></h1>
7 </body> 15 </body>
8 </html> 16 </html>