diff options
Diffstat (limited to 'apps/tal/templates/manual.pt')
-rw-r--r-- | apps/tal/templates/manual.pt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/apps/tal/templates/manual.pt b/apps/tal/templates/manual.pt new file mode 100644 index 00000000000..9ad03db30be --- /dev/null +++ b/apps/tal/templates/manual.pt @@ -0,0 +1,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>
\ No newline at end of file |