cybertools/browser/main.pt
helmutm 5ef2313e82 suppress base tag on pages - leads to bug in dojo with IE
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1397 fd906abe-77d9-0310-91a1-e0d9ade77398
2006-10-09 13:47:37 +00:00

38 lines
1.3 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;
dummy view/update;
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 view/url|string:">
</head>
<body tal:content="structure body" />
</html>
</metal:block>