Annotation of ECHO_content/zpt/content_overview_template.zpt, revision 1.1

1.1     ! casties     1: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
        !             2: <html metal:define-macro="page">
        !             3: <head metal:define-slot="head">
        !             4:   <meta http-equiv="content-type" content="text/html; charset=utf-8">
        !             5:   <title metal:define-slot="title">ECHO Overview</title>
        !             6:   <tal:block metal:define-slot="script">
        !             7:     <script tal:replace="structure here/createMapHead"/>
        !             8:   </tal:block>
        !             9: </head>
        !            10: 
        !            11: <body metal:define-slot="body" onload="map_init()">
        !            12: <p>prod!</p>
        !            13: <tal:block metal:define-slot="page_head"/>
        !            14: <table>
        !            15:   <tr>
        !            16:     <td>
        !            17:       <tal:block metal:define-slot="link_head"/>
        !            18:       <!-- link block -->
        !            19:       <tal:block tal:repeat="ob here/getAllMapAreas">
        !            20:       <a tal:replace="structure python:here.createMapLink(ob)"/><br/>
        !            21:       </tal:block>
        !            22:        <!-- end of link block -->
        !            23:     </td>
        !            24:     <td valign="top">
        !            25:       <div tal:replace="structure python:here.createMapImg()"/>
        !            26:     </td>
        !            27:   </tr>
        !            28: </table>
        !            29: <tal:block metal:define-slot="page_foot"/>
        !            30: <!-- auxiliary image block -->
        !            31: <tal:block tal:repeat="ob here/getAllMapAreas">
        !            32: <a tal:replace="structure python:here.createMapAux(ob)"/>
        !            33: </tal:block>
        !            34: <!-- end of auxiliary image block -->
        !            35: </body>
        !            36: </html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>