view e2gallerypro/index.php @ 3:3f6b44aa6b35 judyates

[svn r4] added ability to buy stuff, from a Prints page, but it doesn't work well with the css, and it also has not been fitted into the perl make system.
author rlm
date Mon, 22 Feb 2010 08:02:39 -0500
parents
children
line wrap: on
line source
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5 <title>(E)2 Gallery Pro</title>
6 <!--(E)2 Gallery Pro <head> Files-->
7 <!--(E)2 Gallery Config FIle-->
8 <?php require('e2config.php');?>
9 <!--End (E)2 Gallery Config FIle-->
10 <!--(E)2 Gallery Style Sheet Link-->
11 <link href="<? echo $galleryDesign?>/design.css" rel="stylesheet" type="text/css" />
12 <script type="text/javascript">
13 //modify this path if needed ^ Correlates with Style Sheet Path above
14 var designPath="<? echo $galleryDesign?>/";
15 </script>
16 <!--End (E)2 Gallery Style Sheet Link-->
18 <!--Mootools-->
19 <script type="text/javascript" src="js/mootools-1.2-core.js"></script>
20 <script type="text/javascript" src="js/mootools-1.2-more.js"></script>
21 <!--End Mootools-->
22 <!--(E)2 Gallery Javascript-->
23 <script type="text/javascript" src="js/setupvars.js"></script>
24 <?php require('php/parsexml.php');?>
25 <script type="text/javascript" src="js/e2gallerypro.js"></script>
26 <script type="text/javascript">
27 window.addEvent('domready', function() {
28 <?php if($autoStartSlideshow=="true"){ ?>
29 (function(){ slideshow(); }).delay(slideshowtime);
30 <?php } ?>
31 <?php if($showGalleriesAtStart=="true"){ ?>
32 galleries();
33 <?php } ?>
34 <?php if($showThumbsAtStart=="false"){ ?>
35 showthumbbox();
36 <?php } ?>
37 <?php if($showInfoAtStart=="true"){ ?>
38 showInfo(135);
39 <?php } ?>
40 });
41 </script>
42 <!--End (E)2 Gallery Javascript-->
43 <!--End (E)2 Gallery Pro </head> Files-->
44 </head>
45 <body>
46 <!--(E)2 Gallery Pro HTML-->
47 <div id="gallerywrapper">
48 <div id="gallery">
49 <!--Loading Bar-->
50 <div id="loading">
51 <div id="loadingbar"><img src="<? echo $galleryDesign?>/loading_hill.gif" width="50" height="50" alt="" id="bar" /></div>
52 </div>
53 <!--End Loading Bar-->
54 <!--Previous Button Div-->
55 <div id="previous"></div>
56 <!--End Previous Button Div-->
57 <!--Next Button Div-->
58 <div id="next"></div>
59 <!--End Next Button Div-->
60 <!--Main Image Holder Div-->
61 <div id="images">
62 <div id="imagewrap">
63 <div id="imgloader"></div>
64 </div>
65 <div id="imageinfo">
66 <div id="infoloader"></div>
67 </div>
68 <div id="smallmessage"></div>
69 </div>
70 <!--End Main Image Holder Div-->
71 <!--Thumb Box Div-->
72 <div id="thumbbox">
73 <div id="thumbleft"></div>
74 <div id="thumbright"></div>
75 <div id="thumbnails">
76 <div id="thumbnailwrap"></div>
77 </div>
78 </div>
79 <!--End Thumb Box Div-->
80 <!--For Sale Box Div-->
81 <div id="fsbox"></div>
82 <!--End For Sale Box Div-->
83 <!--Galleries Holder Div-->
84 <div id="galleries">
85 <div id="controls">
86 <div class="right"><img src="<? echo $galleryDesign?>/gallery_view.png" class="controls" rel=" " id="opengallery" title="<?php echo GALLERIESTEXT;?>" border="0" /> <img src="<? echo $galleryDesign?>/infobox.png" id="showinfo" rel=" " class="controls" title="<?php echo INFOTEXT;?>" border="0" /> <img src="<? echo $galleryDesign?>/thumbbox.png" id="showthumbbox" title="<?php echo THUMBSTEXT;?>" class="controls" rel=" " border="0" /></div>
87 <span id="slideshow"><img src="<? echo $galleryDesign?>/play.png" title="<?php echo PLAYTEXT;?>" border="0" align="absmiddle" class="controls" rel=" " /></span> | <span id="photoNum"></span><span id="flashNum"></span><span id="qtNum"></span></div>
88 <div id="galleryset"> </div>
89 </div>
90 <!--End Galleries Holder Div-->
91 <!--Thumbnail Pop Up Holder-->
92 <div id="thumbnailPopUp"></div>
93 <!--End Thumbnail Pop Up Holder-->
94 </div>
95 </div>
96 <!--End (E)2 Gallery Pro HTML-->
97 </body>
98 </html>