cybertools/browser/main.pt
helmutm f0110c70dc finished registration of macros (for resources, global js calls, etc.) on new view structure with main.pt
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1315 fd906abe-77d9-0310-91a1-e0d9ade77398
2006-08-18 12:06:18 +00:00

35 lines
1.2 KiB
XML

<metal:block define-macro="page"><metal:block define-slot="doctype"><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"></metal:block>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
i18n:domain="zope"
tal:define="controller nocall:view/@@controller;
resourceBase controller/resourceBase;
body view/pageBody">
<head metal:define-macro="head">
<title metal:define-macro="title"
tal:content="options/title|view/headTitle|context/title|default">
Powered by Zope 3
</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<tal:css repeat="macro controller/macros/css">
<metal:css use-macro="macro" />
</tal:css>
<tal:js repeat="macro controller/macros/js">
<metal:js use-macro="macro" />
</tal:js>
<tal:js repeat="macro controller/macros/js-execute">
<metal:js use-macro="macro" />
</tal:js>
<link rel="icon" type="image/png"
tal:attributes="href string:${resourceBase}favicon.png" />
</head>
<body tal:content="structure body" />
</html>
</metal:block>