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 (18 years, 11 months ago) by casties
Branches: MAIN
CVS tags: cleanup, Root_cleanup, HEAD
first version of text map areas

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html metal:define-macro="page">
<head metal:define-slot="head">
  <meta http-equiv="content-type" content="text/html; charset=utf-8">
  <title metal:define-slot="title">ECHO Overview</title>
  <tal:block metal:define-slot="style">
    <link rel="stylesheet" type="text/css" href="mapstyle_css">
  </tal:block>
  <tal:block metal:define-slot="script">
    <script tal:replace="structure here/createMapHead"/>
  </tal:block>
</head>

<body metal:define-slot="body" onload="map_init()">
<tal:block metal:define-slot="page_head"/>
<table>
  <tr>
    <td>
      <tal:block metal:define-slot="link_head"/>
      <!-- link block -->
      <tal:block tal:repeat="ob here/getAllMapAreas">
      <a tal:replace="structure python:here.createMapLink(ob)"/><br/>
      </tal:block>
       <!-- end of link block -->
    </td>
    <td valign="top">
      <div tal:replace="structure python:here.createMapImg()"/>
    </td>
  </tr>
</table>
<tal:block metal:define-slot="page_foot"/>
<!-- auxiliary image block -->
<tal:block tal:repeat="ob here/getAllMapAreas">
<a tal:replace="structure python:here.createMapAux(ob)"/>
</tal:block>
<!-- end of auxiliary image block -->
</body>
</html>

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