1 |
<p class="sgNavBar sgTopNavBar"> |
1 |
<p class="sgNavBar sgTopNavBar"> |
2 |
<?php if($sg->gallery->hasPrev()) echo $sg->gallery->prevLink()." | "; ?> |
2 |
<?php if($sg->gallery->hasPrev()) echo $sg->gallery->prevLink()." | "; ?> |
3 |
<?php if(!$sg->gallery->isRoot()) echo $sg->gallery->parentLink(); ?> |
3 |
<?php if(!$sg->gallery->isRoot()) echo $sg->gallery->parentLink(); ?> |
4 |
<?php if($sg->gallery->hasNext()) echo " | ".$sg->gallery->nextLink(); ?> |
4 |
<?php if($sg->gallery->hasNext()) echo " | ".$sg->gallery->nextLink(); ?> |
5 |
</p> |
5 |
</p> |
6 |
|
6 |
|
7 |
<h2 class="sgTitle"><?php echo $sg->gallery->name(); ?></h2> |
7 |
<h2 class="sgTitle"><?php echo $sg->gallery->name(); ?></h2> |
8 |
<h4 class="sgSubTitle"><?php echo $sg->gallery->byArtistText(); ?></h4> |
8 |
<h4 class="sgSubTitle"><?php echo $sg->gallery->byArtistText(); ?></h4> |
9 |
|
9 |
|
10 |
<div class="sgShadow"><table class="sgShadow" cellspacing="0"> |
10 |
<div class="sgShadow"><table class="sgShadow" cellspacing="0"> |
11 |
<tr> |
11 |
<tr> |
12 |
<td class="tabl"></td> |
12 |
<td class="tabl"></td> |
13 |
<td class="tabm"> |
13 |
<td class="tabm"> |
14 |
<div><?php echo $sg->galleryTab(); ?></div> |
14 |
<div><?php echo $sg->galleryTab(); ?></div> |
15 |
</td> |
15 |
</td> |
16 |
<td class="tabr"></td> |
16 |
<td class="tabr"></td> |
17 |
</tr> |
17 |
</tr> |
18 |
<tr> |
18 |
<tr> |
19 |
<td class="tl"></td> |
19 |
<td class="tl"></td> |
20 |
<td class="tm"></td> |
20 |
<td class="tm"></td> |
21 |
<td class="tr"></td> |
21 |
<td class="tr"></td> |
22 |
</tr> |
22 |
</tr> |
23 |
<tr> |
23 |
<tr> |
24 |
<td class="ml"></td> |
24 |
<td class="ml"></td> |
25 |
<td class="mm"> |
25 |
<td class="mm"> |
26 |
|
26 |
|
27 |
<?php for($index = $sg->gallery->startat; $index < $sg->gallery->galleryCountSelected()+$sg->gallery->startat; $index++): ?> |
27 |
<?php for($index = $sg->gallery->startat; $index < $sg->gallery->galleryCountSelected()+$sg->gallery->startat; $index++): ?> |
28 |
<div class="sgGallery"><table class="sgGallery"><tr valign="top"> |
28 |
<div class="sgGallery"><table class="sgGallery"><tr valign="top"> |
29 |
<td class="sgGalleryThumb"> |
29 |
<td class="sgGalleryThumb"> |
30 |
<?php echo $sg->gallery->galleries[$index]->thumbnailLink(); ?> |
30 |
<?php echo $sg->gallery->galleries[$index]->thumbnailLink(); ?> |
31 |
</td> |
31 |
</td> |
32 |
<td> |
32 |
<td> |
33 |
<p><strong><?php echo $sg->gallery->galleries[$index]->nameLink(); ?></strong></p> |
33 |
<p><strong><?php echo $sg->gallery->galleries[$index]->nameLink(); ?></strong></p> |
34 |
<p><?php echo $sg->gallery->galleries[$index]->summary(); ?></p> |
34 |
<p><?php echo $sg->gallery->galleries[$index]->summary(); ?></p> |
35 |
<p>[<?php echo $sg->gallery->galleries[$index]->itemCountText(); ?>]</p> |
35 |
<p>[<?php echo $sg->gallery->galleries[$index]->itemCountText(); ?>]</p> |
36 |
</td> |
36 |
</td> |
37 |
</tr></table></div> |
37 |
</tr></table></div> |
38 |
<?php endfor; ?> |
38 |
<?php endfor; ?> |
39 |
|
39 |
|
40 |
</td> |
40 |
</td> |
41 |
<td class="mr"></td> |
41 |
<td class="mr"></td> |
42 |
</tr> |
42 |
</tr> |
43 |
<tr> |
43 |
<tr> |
44 |
<td class="bl"></td> |
44 |
<td class="bl"></td> |
45 |
<td class="bm"></td> |
45 |
<td class="bm"></td> |
46 |
<td class="br"></td> |
46 |
<td class="br"></td> |
47 |
</tr> |
47 |
</tr> |
48 |
</table></div> |
48 |
</table></div> |
49 |
|
49 |
|
50 |
|
50 |
|
51 |
|
51 |
|
52 |
<p class="sgDetailsList"> |
52 |
<p class="sgDetailsList"> |
53 |
<?php foreach($sg->gallery->detailsArray() as $key => $value): ?> |
53 |
<?php foreach($sg->gallery->detailsArray() as $key => $value): ?> |
54 |
<strong><?php echo $key; ?>:</strong> <?php echo $value; ?><br /> |
54 |
<strong><?php echo $key; ?>:</strong> <?php echo $value; ?><br /> |
55 |
<?php endforeach; ?> |
55 |
<?php endforeach; ?> |
56 |
</p> |
56 |
</p> |