<html metal:define-macro="page">
<head>
<title tal:content="python:path('template/title') or path('here/title')">
Nadpis dokumentu nebo složky
</title>
</head>
<body>
<div metal:define-slot="body">
<h1 tal:content="here/title_or_id">Nadpis</h1>
<ul>
<li tal:repeat="example python:here.objectValues('Folder')">
<a href="example"
tal:attributes="href example/getId"
tal:content="example/title">Příklad nadpisu</a>
</li>
</ul>
</div>
</body>
</html>