tycker/templates/layout.html

21 lines
429 B
HTML
Raw Normal View History

2012-04-20 03:50:59 +02:00
<!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('@*')">
2015-04-25 23:58:21 +02:00
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
${select('*|text()')}
2012-04-20 03:50:59 +02:00
</head>
</py:match>
<py:match path="body" once="true">
<body py:attrs="select('@*')">
${select('*|text()')}
</body>
</py:match>
</html>