loops/browser/node.pt
helmutm 3a5281b047 View/Node: added 'viewer' attribute
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@1160 fd906abe-77d9-0310-91a1-e0d9ade77398
2006-04-05 07:10:41 +00:00

41 lines
991 B
XML

<tal:show i18n:domain="loops">
<html metal:use-macro="context/@@skin_macros/page">
<head></head>
<body>
<metal:settings fill-slot="settings"
tal:define="dummy python:
controller.macros.register('css', resourceName='node.css', media='all');
dummy python:
controller.macros.register('js', resourceName='node.js');" />
<metal:block fill-slot="actions" />
<metal:body fill-slot="body">
<tal:content define="item view/item;
level level|python: 1;
macro item/macro;">
<metal:block use-macro="macro" />
</tal:content>
</metal:body>
<div class="box" metal:fill-slot="navigators">
<h4>Navigation</h4>
<tal:menu define="item view/menu;
level level|python: 1"
condition="item">
<div class="body">
<metal:menu use-macro="views/node_macros/menu" />
</div>
</tal:menu>
</div>
</body>
</html>
</tal:show>