]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/pages/record_result.ttk
removing old opac images and css
[working/Evergreen.git] / Open-ILS / src / templates / opac / pages / record_result.ttk
1 [%
2
3         # --------------------------------------------------------------------------------- 
4         # This page will display a list of metarecord search results
5         # --------------------------------------------------------------------------------- 
6         tm = global.textmap.opac.mr_result;
7
8         WRAPPER html/html;
9
10                 WRAPPER html/head title="Record Result Page";
11                         INCLUDE opac/pages/chunks/css_includes.ttk;
12                 END;
13
14
15
16                 WRAPPER html/body onload='pageInit(); globalPage.doSearch();';
17
18                         INCLUDE opac/pages/chunks/body_header.ttk;
19
20                         #WRAPPER html/div id='page_trail';END;
21
22
23                         # --------------------------------------------------------------------------------- 
24                         # search results are spit out into this table
25                         # --------------------------------------------------------------------------------- 
26                         box(id="did_you_mean_box", style="margin-left:20px;width:100%;text-align:left");
27
28                         WRAPPER html/table class='big_ol_box' id='big_ol_box';
29
30
31                                 WRAPPER html/row;
32
33                                         WRAPPER html/cell class='record_result_cell';
34                                                 WRAPPER html/table class='record_result_box', id='record_result_box'; 
35                                                         WRAPPER html/thead class='record_result_thead'; 
36                                                                 WRAPPER html/row id='record_result_thead_row';
37                                                                                 cell(nowrap='nowrap', colspan='2', 
38                                                                                         #content="Title / Author", class='record_box_descriptor' ); 
39                                                                                         content=" ", class='record_box_descriptor' ); 
40                                                                 END;
41                                                         END;
42                                                 END;
43
44                                         END;
45
46
47                                         WRAPPER html/cell class='record_sidebar_cell' id='record_sidebar_cell' valign="top";
48                                                 box( id='record_sidebar_box' );
49                                         END;
50
51                                 END;
52
53                                 WRAPPER html/row id='hourglass_row';
54                                         cell(style="text-align:center", content=img(src="http://www.filleacgil.it/Animate/book_b.gif"));
55                                         #cell(style="text-align:center", content=img(src="/images/computer.gif"));
56                                 END;
57
58                                 
59                         END;
60
61                         lines(2);
62                         WRAPPER html/div class='hit_count_cell' id='hit_count_cell_2';
63                         END;
64                         lines(1);
65
66                         INCLUDE opac/pages/chunks/org_tree.ttk;
67
68                 END; # body
69
70         END; # html
71
72 %]
73