Mercurial > bins
comparison templates.petrus/imagelist.html @ 0:a84c32f131df 1.1.29
Import vendor version
author | Peter Gervai <grin@grin.hu> |
---|---|
date | Wed, 15 Oct 2008 23:28:56 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:a84c32f131df |
---|---|
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" | |
2 "http://www.w3.org/TR/REC-html40/loose.dtd"> | |
3 <html> | |
4 <head> | |
5 <meta http-equiv="content-type" | |
6 content="text/html;charset=<TMPL_VAR NAME=ENCODING>"> | |
7 <meta name="GENERATOR" | |
8 content="BINS <TMPL_VAR NAME=BINS_VERSION> (http://bins.sautret.org/)"> | |
9 <meta name="template" content="imagelist.html"> | |
10 <title><TMPL_VAR NAME=ALBUM_TITLE></title> | |
11 <TMPL_IF NAME=CUSTOM_CSS> | |
12 <link rel="stylesheet" | |
13 href="<TMPL_VAR NAME=STATIC_PATH>/<TMPL_VAR NAME=CUSTOM_CSS>" | |
14 type="text/css"> | |
15 <TMPL_ELSE> | |
16 <link rel="stylesheet" | |
17 href="<TMPL_VAR NAME=STATIC_PATH>/joi.css" | |
18 type="text/css"> | |
19 </TMPL_IF> | |
20 <link rel="stylesheet" | |
21 href="<TMPL_VAR NAME=STATIC_PATH>/petrus.css" | |
22 type="text/css"> | |
23 <script language="JavaScript" | |
24 type="text/javascript" | |
25 src="<TMPL_VAR NAME=STATIC_PATH>/joi.js"> | |
26 </script> | |
27 </head> | |
28 | |
29 <TMPL_VAR NAME=BINS_ID> | |
30 | |
31 <!-- imagelist.html --> | |
32 | |
33 <body <TMPL_IF NAME="BG_IMAGE"> | |
34 background="<TMPL_VAR NAME="BG_IMAGE">" | |
35 </TMPL_IF>> | |
36 | |
37 <!-- Menu Title --> | |
38 <TMPL_INCLUDE NAME="title1.html"> | |
39 | |
40 <!-- Navigation box --> | |
41 <TMPL_INCLUDE NAME="navbar.html"> | |
42 | |
43 <!-- Navigation bar --> | |
44 <TMPL_INCLUDE NAME="path.html"> | |
45 | |
46 <!-- More informations --> | |
47 <TMPL_INCLUDE NAME="moreinfos.html"> | |
48 | |
49 <div id="mainBody"> | |
50 | |
51 <!-- Description --> | |
52 <p class="normal"><TMPL_VAR NAME=ALBUM_DESC></p> | |
53 | |
54 <!-- Content Area --> | |
55 <TMPL_LOOP NAME=IMAGE_LIST_TABLE> | |
56 <table width="100%" cellpadding="3" border="0" cellspacing="2" class="contentBG"> | |
57 <tr> | |
58 <!-- Description --> | |
59 <td colspan="2"> | |
60 <p class="titre2"><TMPL_VAR NAME=TITLE> </p> | |
61 </td> | |
62 </tr> | |
63 | |
64 <TMPL_IF NAME=THUMB_LINK> | |
65 <tr> | |
66 <!-- Image and Data --> | |
67 <td align="center" | |
68 class="contentBG" | |
69 id="id<TMPL_VAR NAME=THUMB_ID>" | |
70 <TMPL_IF NAME=THUMB_DEFAULT_SIZE> | |
71 onmouseover="hlon(this, 'dflt<TMPL_VAR NAME=THUMB_ID>');" | |
72 onmouseout="hloff();"> | |
73 <a href="<TMPL_VAR NAME=THUMB_DEFAULT_SIZE>"> | |
74 <TMPL_ELSE> | |
75 > | |
76 </TMPL_IF> | |
77 <img src="<TMPL_VAR NAME=THUMB_LINK>" | |
78 width="<TMPL_VAR NAME=THUMB_WIDTH>" | |
79 height="<TMPL_VAR NAME=THUMB_HEIGHT>" | |
80 alt="<TMPL_VAR NAME=THUMB_ALT>" | |
81 title="<TMPL_VAR NAME=THUMB_LINK_TITLE>"><TMPL_IF NAME=THUMB_DEFAULT_SIZE></a></TMPL_IF> | |
82 </td> | |
83 <td width="100%" class="contentDesc" rowspan="2"> | |
84 <table border="0" cellpadding="2"> | |
85 <TMPL_LOOP NAME=DESC_TABLE> | |
86 <tr> | |
87 <td class="descrTitle"> | |
88 <TMPL_VAR NAME=DESC_FIELD_NAME> | |
89 </td> | |
90 <td class="descrContent"> | |
91 <TMPL_VAR NAME=DESC_FIELD_VALUE> | |
92 </td> | |
93 </tr> | |
94 </TMPL_LOOP> | |
95 <TMPL_UNLESS NAME=DESC_TABLE> | |
96 <!-- to prevent the table to be empty (not accepted by HTML 4) --> | |
97 <tr><td> </td></tr> | |
98 </TMPL_UNLESS> | |
99 </table> | |
100 </td> | |
101 </tr> | |
102 </TMPL_IF> | |
103 <tr> | |
104 <!-- Size Names --> | |
105 <td align="center"> | |
106 <TMPL_LOOP NAME=SIZE_LINKS> | |
107 <span <TMPL_IF NAME=SIZE_DFLT> | |
108 id="dflt<TMPL_VAR NAME=THUMB_ID>" | |
109 </TMPL_IF> | |
110 onmouseover="hlon(this, 'id<TMPL_VAR NAME=THUMB_ID>');" | |
111 onmouseout="hloff();"> | |
112 <a href="<TMPL_VAR NAME=SIZE_LINK>" | |
113 title="<TMPL_VAR NAME=SIZE_TITLE>"> | |
114 <img src="<TMPL_VAR NAME=STATIC_PATH>/<TMPL_VAR NAME=SIZE_FILE>" | |
115 alt="<TMPL_VAR NAME=SIZE_TITLE>" | |
116 title="<TMPL_VAR NAME=SIZE_TITLE>"></a> | |
117 </span> | |
118 </TMPL_LOOP> | |
119 </td> | |
120 <!-- End of Size Names --> | |
121 </tr> | |
122 </table> | |
123 <br /> | |
124 </TMPL_LOOP> | |
125 <TMPL_INCLUDE NAME="xlink.html"> | |
126 <!-- End of Image List Page --> | |
127 </div> | |
128 | |
129 <TMPL_INCLUDE NAME="footer.html"> | |
130 | |
131 </body> | |
132 </html> |