
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1137 fd906abe-77d9-0310-91a1-e0d9ade77398
96 lines
3.6 KiB
XML
96 lines
3.6 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="resourceBase view/resourceBase | string:${request/URL/0}/@@/">
|
|
|
|
<head metal:define-macro="head">
|
|
<title metal:define-slot="title"
|
|
tal:content="options/title|view/title|context/title|default">
|
|
Powered by Zope 3
|
|
</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<style type="text/css" media="all"
|
|
tal:content="string:@import url(${resourceBase}zope3_tablelayout.css);">
|
|
@import url(zope3_tablelayout.css);
|
|
</style>
|
|
<metal:block metal:define-slot="headers">
|
|
<script type="text/javascript" src="zope3.js"
|
|
tal:attributes="src string:${resourceBase}zope3.js" >
|
|
</script>
|
|
<span metal:use-macro="context/@@standard_macros/navigation_tree_js" />
|
|
</metal:block>
|
|
<metal:block define-slot="style_slot" />
|
|
<style type="text/css" media="screen"
|
|
tal:content="string:@import url(${resourceBase}base.css);">
|
|
@import url(base.css);
|
|
</style>
|
|
<style type="text/css" media="all"
|
|
tal:content="string:@import url(${resourceBase}custom.css);">
|
|
@import url(custom.css);
|
|
</style>
|
|
<style type="text/css" media="print"
|
|
tal:content="string:@import url(${resourceBase}print.css);">
|
|
@import url(print.css);
|
|
</style>
|
|
<metal:block define-slot="ecmascript_slot" />
|
|
<link rel="icon" type="image/png"
|
|
tal:attributes="href string:${resourceBase}favicon.png" />
|
|
</head>
|
|
|
|
<body tal:attributes="onload body_onload | nothing">
|
|
|
|
<div id="header">
|
|
<div class="top">
|
|
<a href="#" name="top" metal:define-slot="logo"
|
|
tal:attributes="href string:${request/URL/1}"><img
|
|
src="logo.gif" border="0"
|
|
alt="Home"
|
|
tal:attributes="src string:${resourceBase}logo.gif" /></a>
|
|
</div>
|
|
</div>
|
|
<div id="menu">
|
|
<metal:menu define-slot="navigators">
|
|
<span metal:use-macro="context/@@standard_macros/navigation_tree_box" />
|
|
<div class="box" id="commonTasks"
|
|
tal:define="view context/@@commonTasks|nothing"
|
|
tal:condition="view/strip|nothing">
|
|
<h4 i18n:translate="">Add</h4>
|
|
<div class="body">
|
|
<span tal:replace="structure view" />
|
|
</div>
|
|
</div>
|
|
</metal:menu>
|
|
</div>
|
|
<div id="content">
|
|
<div class="itemViews" metal:define-slot="actions">
|
|
<tal:block repeat="view context/@@view_get_menu/zmi_views">
|
|
<a href=""
|
|
tal:attributes="href view/action;
|
|
class view/selected;"
|
|
tal:content="view/title" i18n:translate="">
|
|
label
|
|
</a>
|
|
</tal:block>
|
|
</div>
|
|
|
|
<!--<tal:test content="views/controller/macros/css" />-->
|
|
<metal:content define-slot="body">Here comes the body</metal:content>
|
|
|
|
</div>
|
|
|
|
<div id="sub-section">
|
|
<metal:sub define-slot="context_information"></metal:sub>
|
|
</div>
|
|
|
|
<div id="footer" class="footer">
|
|
<metal:footer define-slot="footer">
|
|
Powered by <b><a href="http://www.python.org">Python</a></b> ·
|
|
<b><a href="http://www.zope.org/DevHome/Wikis/DevSite/Projects/ComponentArchitecture/FrontPage">Zope 3</a></b>
|
|
</metal:footer>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
</metal:block>
|
|
|