source: documentViewer/zpt/search_template.zpt @ 511:551ca1641a5e

elementtree
Last change on this file since 511:551ca1641a5e was 511:551ca1641a5e, checked in by casties, 12 years ago

more cleanup.
search really works now.

File size: 1.1 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml">
4<head>
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6</head>
7<body>
8  <!-- block used for main content area -->
9  <div metal:define-macro="results_div"
10    tal:define="start pageinfo/resultStart; resultsize python:docinfo.get('resultSize',0); grpsize pageinfo/resultPageSize;
11                batch python:here.getBatch(start=start,size=grpsize,end=resultsize);">
12    <div class="ruler" tal:define="startParam string:resultStart">
13        <metal:block metal:use-macro="here/template/common_template/macros/toc_ruler"/>
14    </div>
15    <div class="content"
16      tal:content="structure python:here.getResultsPage(mode=queryType,query=query,start=start,size=grpsize,pageinfo=pageinfo,docinfo=docinfo)" />
17  </div>
18<!--  tal:content="structure python:here.getResultsPage(mode=queryType,query=query,pn=1,pageinfo=pageinfo,docinfo=docinfo)" -->
19<!--  structure python:here.getTocPage(mode='text',start=start,pageinfo=pageinfo,docinfo=docinfo) -->
20</body>
21</html>
Note: See TracBrowser for help on using the repository browser.