cybertools/view/browser/liquid/view_macros.pt
helmutm b1a231f40e work in progress: wiki configuration and editing
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3855 fd906abe-77d9-0310-91a1-e0d9ade77398
2010-05-09 09:50:15 +00:00

61 lines
2 KiB
XML

<metal:main define-macro="main"><!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">
<head>
<title tal:content="view/head_title|context/title|default">
Powered by Zope
</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css"
tal:attributes="href view/resources/base.css" />
</head>
<body>
<div class="body">
<div id="global">
<div class="top" metal:define-slot="top">
<a href="#" name="top" metal:define-slot="logo"
tal:attributes="href view/homeURL"><img class="logo"
border="0" alt="Home"
tal:attributes="src string:${view/resource_prefix}logo.png" /></a>
<div metal:define-slot="top-actions">
<tal:action repeat="macro view/actions/top">
<metal:action use-macro="macro" />
</tal:action>
</div>
</div>
</div>
<div id="menu">
<tal:portlet repeat="macro view/actions/portlet_left">
<metal:portlet use-macro="macro" />
</tal:portlet>
</div>
<div id="content">
<div metal:define-slot="actions"></div>
<div metal:define-slot="message"></div>
<div>
<metal:content define-slot="main">Content</metal:content>
</div>
</div>
<div id="sub-section">
<tal:portlet repeat="macro view/actions/portlet_right">
<metal:portlet use-macro="macro" />
</tal:portlet>
</div>
<div id="footer" class="footer">
<metal:footer define-slot="footer">
Powered by <b><a href="http://www.python.org">Python</a></b> &middot;
<b><a href="http://wiki.zope.org/zope3">Zope</a></b>.
</metal:footer>
</div>
</div>
</body>
</html>
</metal:main>
<metal:content define-macro="content">
Dummy Content
</metal:content>