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