20 lines
428 B
HTML
20 lines
428 B
HTML
<!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('@*')">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
${select('*|text()')}
|
|
</head>
|
|
</py:match>
|
|
|
|
<py:match path="body" once="true">
|
|
<body py:attrs="select('@*')">
|
|
|
|
${select('*|text()')}
|
|
|
|
</body>
|
|
</py:match>
|
|
</html>
|
|
|