blob: ac04dc702ea0fcfcbe72864f5aa600b676a57e9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
py:strip="">
<head py:match="head" py:attrs="select('@*')">
${select('*|comment()|text()')}
<link rel="stylesheet" type="text/css" href="${href.chrome('site/style.css')}" />
</head>
<body py:match="body" py:attrs="select('@*')">
${select('*|text()')}
</body>
</html>
|