File:  [Repository] / ECHO_content / zpt / content_overview_template.zpt
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Thu Jun 9 08:34:49 2005 UTC (19 years, 1 month ago) by casties
Branches: MAIN
CVS tags: cleanup, Root_cleanup, HEAD
first version of text map areas

    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="style">
    7:     <link rel="stylesheet" type="text/css" href="mapstyle_css">
    8:   </tal:block>
    9:   <tal:block metal:define-slot="script">
   10:     <script tal:replace="structure here/createMapHead"/>
   11:   </tal:block>
   12: </head>
   13: 
   14: <body metal:define-slot="body" onload="map_init()">
   15: <tal:block metal:define-slot="page_head"/>
   16: <table>
   17:   <tr>
   18:     <td>
   19:       <tal:block metal:define-slot="link_head"/>
   20:       <!-- link block -->
   21:       <tal:block tal:repeat="ob here/getAllMapAreas">
   22:       <a tal:replace="structure python:here.createMapLink(ob)"/><br/>
   23:       </tal:block>
   24:        <!-- end of link block -->
   25:     </td>
   26:     <td valign="top">
   27:       <div tal:replace="structure python:here.createMapImg()"/>
   28:     </td>
   29:   </tr>
   30: </table>
   31: <tal:block metal:define-slot="page_foot"/>
   32: <!-- auxiliary image block -->
   33: <tal:block tal:repeat="ob here/getAllMapAreas">
   34: <a tal:replace="structure python:here.createMapAux(ob)"/>
   35: </tal:block>
   36: <!-- end of auxiliary image block -->
   37: </body>
   38: </html>

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