21 lines
409 B
XML
21 lines
409 B
XML
<tal:show i18n:domain="loops">
|
|
<html metal:use-macro="context/@@standard_macros/view"
|
|
i18n:domain="zope">
|
|
<head></head>
|
|
<body>
|
|
|
|
|
|
<metal:body fill-slot="body"
|
|
tal:define="item nocall:view">
|
|
<h1 tal:content="item/title">Title</h1>
|
|
<div class="content-1" id="1.body"
|
|
tal:content="structure item/render">
|
|
The body
|
|
</div>
|
|
</metal:body>
|
|
|
|
|
|
</body>
|
|
</html>
|
|
</tal:show>
|
|
|