Changeset 328
- Timestamp:
- 08/31/08 17:40:46 (2 years ago)
- Files:
-
- trunk/templates/public/luxbum/_header.html (modified) (1 diff)
- trunk/templates/public/luxbum/slideshow.html (modified) (2 diffs)
- trunk/templates/public/photoblog/display.html (modified) (2 diffs)
- trunk/templates/public/photoblog/index.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/templates/public/luxbum/_header.html
r201 r328 5 5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 6 6 <meta name="MSSmartTagsPreventParsing" content="TRUE" /> 7 <title>{$cfg['gallery_name']} </title>7 <title>{$cfg['gallery_name']}{if $gallery} - {$gallery.niceName}{/if}</title> 8 8 9 9 {style} 10 10 11 11 </head> trunk/templates/public/luxbum/slideshow.html
r227 r328 18 18 <!-- 19 19 var photosURL = new Array(); 20 var ids = new Array(); 20 21 21 22 {assign $cpt =0} 22 23 {foreach $gallery as $img} 23 24 photosURL[{$cpt}] = "{$img.previewUrl}"; 25 ids[{$cpt}] = "{$img.dir|escurl}{$img.file|escurl}"; 24 26 {assign $cpt=$cpt+1} 25 27 {/foreach} … … 28 30 var slide_speed = {$cfg['slideshow_time']}; 29 31 var first = {$first}; 32 var urlbase = '{$cfg['url_base']}'; 30 33 --> 31 34 </script> trunk/templates/public/photoblog/display.html
r242 r328 7 7 <div class="imgprevious"> 8 8 <a href="{$gallery.linkPreviousDisplay}"> 9 « {i18n 'prev'} 9 10 <img src="{$gallery.imagePreviousDisplay}"/> 10 « {i18n 'prev'}</a>11 </a> 11 12 </div> 12 13 {/if} … … 16 17 {else} 17 18 <div class="imgnext"> 18 <a href="{$gallery.linkNextDisplay}"><img src="{$gallery.imageNextDisplay}"/> 19 {i18n 'next'} »</a> 19 <a href="{$gallery.linkNextDisplay}"> 20 {i18n 'next'} » 21 <img src="{$gallery.imageNextDisplay}"/> 22 </a> 20 23 </div> 21 24 {/if} trunk/templates/public/photoblog/index.html
r240 r328 61 61 {/if} 62 62 {if $gallery.totalCount > 0 && !$gallery->isPrivateAndLocked()} 63 <h3><a href="#">{i18n 'Diaporama'}</a></h3>63 <h3><a href="#">{i18n "Slideshow"}</a></h3> 64 64 {/if} 65 65 </div> … … 97 97 </div> 98 98 </div> 99 <p style="clear:both;"></p>100 99 {/if} 101 <p style="clear:both;"></p>100 <p style="clear:both;"></p> 102 101 103 102 {include '_footer.html'}
