Rev Author Line No. Line
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->galleryCountSelected()+$sg->gallery->startat; $index++): ?>
28 <div class="sgGallery"><table class="sgGallery"><tr valign="top">
29 <td class="sgGalleryThumb">
30 <?php echo $sg->gallery->galleries[$index]->thumbnailLink(); ?>
31 </td>
32 <td>
33 <p><strong><?php echo $sg->gallery->galleries[$index]->nameLink(); ?></strong></p>
34 <p><?php echo $sg->gallery->galleries[$index]->summary(); ?></p>
35 <p>[<?php echo $sg->gallery->galleries[$index]->itemCountText(); ?>]</p>
36 </td>
37 </tr></table></div>
38 <?php endfor; ?>
39  
40 </td>
41 <td class="mr"></td>
42 </tr>
43 <tr>
44 <td class="bl"></td>
45 <td class="bm"></td>
46 <td class="br"></td>
47 </tr>
48 </table></div>
49  
50  
51  
52 <p class="sgDetailsList">
53 <?php foreach($sg->gallery->detailsArray() as $key => $value): ?>
54 <strong><?php echo $key; ?>:</strong> <?php echo $value; ?><br />
55 <?php endforeach; ?>
56 </p>