347 |
kaklik |
1 |
<p class="sgNavBar sgTopNavBar"> |
|
|
2 |
<?php if($sg->gallery->hasPrev()) echo $sg->gallery->prevLink()." | "; ?> |
|
|
3 |
<?php if(!$sg->gallery->isRoot()) echo $sg->gallery->parentLink(); ?> |
|
|
4 |
<?php if($sg->gallery->hasNext()) echo " | ".$sg->gallery->nextLink(); ?> |
|
|
5 |
</p> |
|
|
6 |
|
|
|
7 |
<h2 class="sgTitle"><?php echo $sg->gallery->name(); ?></h2> |
|
|
8 |
<h4 class="sgSubTitle"><?php echo $sg->gallery->byArtistText(); ?></h4> |
|
|
9 |
|
|
|
10 |
<div class="sgShadow"><table class="sgShadow" cellspacing="0"> |
|
|
11 |
<tr> |
|
|
12 |
<td class="tabl"></td> |
|
|
13 |
<td class="tabm"> |
|
|
14 |
<div><?php echo $sg->galleryTab(); ?></div> |
|
|
15 |
</td> |
|
|
16 |
<td class="tabr"></td> |
|
|
17 |
</tr> |
|
|
18 |
<tr> |
|
|
19 |
<td class="tl"></td> |
|
|
20 |
<td class="tm"></td> |
|
|
21 |
<td class="tr"></td> |
|
|
22 |
</tr> |
|
|
23 |
<tr> |
|
|
24 |
<td class="ml"></td> |
|
|
25 |
<td class="mm"> |
|
|
26 |
|
|
|
27 |
<?php for($index = $sg->gallery->startat; $index < $sg->gallery->imageCountSelected()+$sg->gallery->startat; $index++): ?> |
|
|
28 |
<div class="sgThumbnail"> |
|
|
29 |
<div class="sgThumbnailContent"> |
|
|
30 |
<img class="borderTL" src="<?php echo $sg->config->base_url.$sg->config->pathto_current_template ?>images/slide-tl.gif" alt="" /> |
|
|
31 |
<img class="borderTR" src="<?php echo $sg->config->base_url.$sg->config->pathto_current_template ?>images/slide-tr.gif" alt="" /> |
|
|
32 |
|
|
|
33 |
<table><tr><td> |
|
|
34 |
<?php echo $sg->gallery->images[$index]->thumbnailLink(); ?> |
|
|
35 |
</td></tr></table> |
|
|
36 |
|
|
|
37 |
<div class="roundedCornerSpacer"> </div> |
|
|
38 |
</div> |
|
|
39 |
<div class="bottomCorners"> |
|
|
40 |
<img class="borderBL" src="<?php echo $sg->config->base_url.$sg->config->pathto_current_template ?>images/slide-bl.gif" alt="" /> |
|
|
41 |
<img class="borderBR" src="<?php echo $sg->config->base_url.$sg->config->pathto_current_template ?>images/slide-br.gif" alt="" /> |
|
|
42 |
</div> |
|
|
43 |
</div> |
|
|
44 |
<?php endfor; ?> |
|
|
45 |
|
|
|
46 |
</td> |
|
|
47 |
<td class="mr"></td> |
|
|
48 |
</tr> |
|
|
49 |
<tr> |
|
|
50 |
<td class="bl"></td> |
|
|
51 |
<td class="bm"></td> |
|
|
52 |
<td class="br"></td> |
|
|
53 |
</tr> |
|
|
54 |
</table></div> |
|
|
55 |
|
|
|
56 |
<p class="sgDetailsList"> |
|
|
57 |
<?php foreach($sg->gallery->detailsArray() as $key => $value): ?> |
|
|
58 |
<strong><?php echo $key; ?>:</strong> <?php echo $value; ?><br /> |
|
|
59 |
<?php endforeach; ?> |
|
|
60 |
</p> |