228 |
kaklik |
1 |
<h2><?php echo $sg->gallery->name(); ?></h2> |
|
|
2 |
<h4><?php echo $sg->gallery->byArtistText(); ?></h4> |
|
|
3 |
</div> |
|
|
4 |
|
|
|
5 |
<div id="sgMain-nav"> |
|
|
6 |
</div> |
|
|
7 |
|
|
|
8 |
<div id="sgContent"> |
|
|
9 |
<p class="sgTab"><?php echo $sg->galleryTab(); ?></p> |
|
|
10 |
|
|
|
11 |
<div class="sgAlbum"> |
|
|
12 |
<?php for($index = $sg->gallery->startat; $index < $sg->gallery->imageCountSelected()+$sg->gallery->startat; $index++): ?> |
|
|
13 |
<?php echo $sg->gallery->images[$index]->thumbnailLink(); ?> |
|
|
14 |
<?php endfor; ?> |
|
|
15 |
<div class="sgFoot"></div> |
|
|
16 |
</div> |
|
|
17 |
|
|
|
18 |
<p class="sgTab"><?php echo $sg->galleryTab(); ?></p> |
|
|
19 |
|
|
|
20 |
<div class="sgDetailsList"> |
|
|
21 |
<dl> |
|
|
22 |
<?php foreach($sg->gallery->detailsArray() as $key => $value): ?> |
|
|
23 |
<dt><?php echo $key; ?>:</dt><dd><?php echo $value; ?></dd> |
|
|
24 |
<?php endforeach; ?> |
|
|
25 |
</dl> |
|
|
26 |
</div> |
|
|
27 |
|
|
|
28 |
</div> |
|
|
29 |
|