Mercurial > genshi > mirror
view examples/tutorial/geddit/templates/layout.html @ 627:3ed77fbfafa8 trunk
GenshiTutorial: minor tweaks to sync with Wiki page.
author | cmlenz |
---|---|
date | Fri, 31 Aug 2007 23:13:27 +0000 |
parents | 725488d315f3 |
children |
line wrap: on
line source
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://genshi.edgewall.org/" py:strip=""> <py:match path="head" once="true"> <head py:attrs="select('@*')"> <title py:with="title = list(select('title/text()'))"> Geddit<py:if test="title">: ${title}</py:if> </title> <link rel="stylesheet" href="${url('/media/layout.css')}" type="text/css" /> <script type="text/javascript" src="${url('/media/jquery.js')}"></script> ${select('*[local-name()!="title"]')} </head> </py:match> <py:match path="body" once="true"> <body py:attrs="select('@*')"><div id="wrap"> <div id="header"> <a href="/"><img src="${url('/media/logo.gif')}" width="201" height="79" alt="geddit?" /></a> </div> <div id="content"> ${select('*|text()')} </div> <div id="footer"> <hr /> <p class="legalese">© 2007 Edgewall Software</p> </div> </div></body> </py:match> </html>