view 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
line wrap: on
line source

<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:py="http://genshi.edgewall.org/"
      xmlns:xi="http://www.w3.org/2001/XInclude">
  <head>
    <title>${site_name}</title>
    <link href="${link(request, 'css/site.css')}" type="text/css" rel="stylsheet" title="Default"/>
  </head>
  <body>
    <xi:include href="navigation.html" />
    
    <h1 py:if="logo"><img src="${logo}" alt="${site_name}"/></h1>
  </body>
</html>