blob: 9ad03db30be256974b1252c85313f55b41c29194 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html metal:use-macro="${maintemplate}/page">
<head>
<title>TAL Page Templates</title>
</head>
<body>
<div id="content" metal:fill-slot="content">
<article id="manual" i18n:domain="tal" tal:define="page page|string:intro">
<nav>
<ol>
<li tal:repeat="section sections" tal:attributes="data-id section/id" data-page="intro">
<a tal:content="section/title">Introduction</a>
</li>
</ol>
</nav>
<section metal:use-macro="sections.pt/${page}">
<h1>Manual</h1>
rest of the content
</section>
</article>
</div>
</body>
</html>
|