comparison zpt/layer_text_dict.zpt @ 526:3f375a048402

moved search and dict into separate layers. removed search_template. added tocMode=concordance. fixed bug with paging tocs.
author casties
date Tue, 10 Apr 2012 19:41:44 +0200
parents
children ad6f97fd3944
comparison
equal deleted inserted replaced
525:70c3ae5eac7c 526:3f375a048402
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 <!-- not used here
6 <metal:block metal:define-macro="html_head">
7 </metal:block>
8 -->
9 </head>
10 <body>
11 <!-- right-side options -->
12 <div class="col buttons">
13 <!-- LAYER DISPLAY OPTION -->
14 <ul>
15 <metal:block metal:define-macro="layer_select_li">
16 <li>
17 <input type="checkbox" class="autosubmit" name="viewLayer" value="dict"
18 tal:attributes="checked python:'dict' in viewLayers" /> Dictionary
19 </li>
20 </metal:block>
21 </ul>
22 </div>
23
24 <metal:block metal:define-macro="options_box" tal:condition="python:'dict' in viewLayers">
25 <!--"BEGIN DICTIONARY OVERVIEW"-->
26 <div class="options">
27 <h4>Dictionary view</h4>
28 <form name="f3" action="">
29 <ul>
30 <li>
31 <input type="radio" name="r3" /> Tab
32 </li>
33 <li>
34 <input type="radio" name="r3" /> Window
35 </li>
36 </ul>
37 </form>
38 </div>
39 <!--"END DICTIONARY OVERVIEW"-->
40 </metal:block>
41
42 </body>
43
44 </html>