
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2387 fd906abe-77d9-0310-91a1-e0d9ade77398
40 lines
1.3 KiB
XML
40 lines
1.3 KiB
XML
<metal:block define-macro="page"
|
|
tal:define="controller nocall:view/@@controller;
|
|
dummy view/setupSubviews"
|
|
tal:condition="view/update"><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
|
|
i18n:domain="zope"
|
|
tal:define="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" />
|
|
|
|
<base href="." tal:attributes="href request/URL">
|
|
</head>
|
|
|
|
<body class="tundra"
|
|
tal:content="structure body" />
|
|
|
|
</html>
|
|
</metal:block>
|
|
|