228 |
kaklik |
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 |
<title><?php echo $sg->translator->_g("image|Slideshow").' - '.$sg->pageTitle(); ?></title> |
|
|
6 |
<style type="text/css">@import url("<?php echo $sg->config->base_url.$sg->config->pathto_current_template.'css/layout.css");</style>'; ?> |
|
|
7 |
<style type="text/css">@import url("<?php echo $sg->config->base_url.$sg->config->pathto_current_template.'css/color_'.$sg->config->template_scheme.'.css");</style>'; ?> |
|
|
8 |
<!--[if IE]><link rel="stylesheet" type="text/css" media="all" href="<?php echo $sg->config->base_url.$sg->config->pathto_current_template; ?>css/ie.css"><![endif]--> |
|
|
9 |
<?php if($sg->image->hasNext() && !isset($control)) { |
|
|
10 |
echo '<meta http-equiv="refresh" content="5;url='.$sg->image->nextURL('slideshow').'" />'; |
|
|
11 |
} ?> |
|
|
12 |
</head> |
|
|
13 |
<body id="slideshow"> |
|
|
14 |
<!-- |
|
|
15 |
This page was generated by singapore <http://singapore.sourceforge.net> |
|
|
16 |
singapore is free software licensed under the terms of the GNU GPL. |
|
|
17 |
--> |
|
|
18 |
<div class="sgImageWrapper"> |
|
|
19 |
<div class="sgImageBox" style="width: <?php echo $sg->image->width(); ?>px; margin-top:-<?php echo floor($sg->image->height()/2); ?>px;" title="<?php foreach($sg->image->detailsArray() as $key => $value): ?><?php echo $key; ?>: <?php echo $value; ?><?php endforeach; ?>"> |
|
|
20 |
<?php echo $sg->image->imageHTML() ?> |
|
|
21 |
<a class="thumb" style="width: <?php echo $sg->image->width(); ?>px;" href="<?php echo $sg->image->parent->URL().'"><span>'.$sg->translator->_g("image|Thumbnails").'</span></a>'; ?> |
|
|
22 |
<?php if($sg->image->hasPrev()) {echo '<a class="prev" style="height:'.$sg->image->height().'px;" href="'.$sg->image->prevURL(); if (!strstr($sg->image->prevURL(), '?')) { echo '?'; } else { echo '&'; } echo 'action=slideshow"><span style="margin-top:'.floor(($sg->image->height())/2).'px;">'.$sg->translator->_g("image|Previous").'</span></a>';}?> |
|
|
23 |
<?php if($sg->image->hasNext()) {echo '<a class="next" style="height:'.$sg->image->height().'px;" href="'.$sg->image->nextURL(); if (!strstr($sg->image->nextURL(), '?')) { echo '?'; } else { echo '&'; } echo 'action=slideshow"><span style="margin-top:'.floor(($sg->image->height())/2).'px;">'.$sg->translator->_g("image|Next").'</span></a>';}?> |
|
|
24 |
<?php if (!isset($control)) { |
|
|
25 |
echo '<a class="control" style="width:'.$sg->image->width().'px;" href="'.$sg->image->URL(); if (!strstr($sg->image->URL(), '?')) { echo '?'; } else { echo '&'; } echo 'action=slideshow&control=pause"><span>'.$sg->translator->_g("image|Pause").'</span></a>'; |
|
|
26 |
} |
|
|
27 |
else { |
|
|
28 |
echo '<a class="control" style="width:'.$sg->image->width().'px;" href="'.$sg->image->URL(); if (!strstr($sg->image->URL(), '?')) { echo '?'; } else { echo '&'; } echo 'action=slideshow"><span>'.$sg->translator->_g("image|Play").'</span></a>'; |
|
|
29 |
} |
|
|
30 |
?> |
|
|
31 |
</div> |
|
|
32 |
</div> |
|
|
33 |
</body> |
|
|
34 |
</html> |