- Timestamp:
- 08/05/10 18:37:06 (22 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
plone4bio.biosql/trunk/src/plone4bio/biosql/browser/templates/biosqldatabase.pt
r62 r153 1 <html xmlns="http://www.w3.org/1999/xhtml" 2 xmlns:metal="http://xml.zope.org/namespaces/metal" 3 xmlns:tal="http://xml.zope.org/namespaces/tal" 4 xmlns:i18n="http://xml.zope.org/namespaces/i18n" 5 metal:use-macro="context/@@standard_macros/page" 1 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" 2 lang="en" 3 metal:use-macro="here/main_template/macros/master" 6 4 i18n:domain="plone4bio"> 7 5 <head> … … 9 7 10 8 <body> 11 <div metal:fill-slot="body"> 12 13 <h1 class="documentFirstHeading" tal:content="context/title" /> 9 <div metal:fill-slot="main"> 10 <metal:main-macro define-macro="main"> 11 12 <div tal:replace="structure provider:plone.abovecontenttitle" /> 13 14 <h1 tal:content="object_title|nothing" class="documentFirstHeading"> 15 Title or id 16 </h1> 17 18 <div tal:replace="structure provider:plone.belowcontenttitle" /> 19 20 <a href="" 21 class="link-parent" 22 tal:define="parent_url python:here.navigationParent(here)" 23 tal:condition="parent_url" 24 tal:attributes="href parent_url" 25 i18n:translate="go_to_parent_url"> 26 Up one level 27 </a> 28 29 <p class="documentDescription" 30 tal:content="here/Description" 31 tal:condition="here/Description"> 32 Description 33 </p> 34 35 <div tal:replace="structure provider:plone.abovecontentbody" /> 36 14 37 15 38 <tal:foldercontents tal:define="folderContents here/keys; … … 23 46 tal:define="batch python:Batch(folderContents, b_size, int(b_start), orphan=1);"> 24 47 48 <!-- 25 49 <table class="listing vertical" style="float:right"> 26 50 <tr> … … 34 58 35 59 </table> 36 37 60 --> 38 61 39 62 <div metal:use-macro="here/batch_macros/macros/navigation" /> … … 94 117 </div> 95 118 </tal:foldercontents> 96 97 </div> 119 120 </metal:main-macro> 121 </div> 98 122 </body> 99 123 </html>
