Changeset 25487 for extensions/simple_themes
- Timestamp:
- Nov 14, 2013, 11:03:41 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/simple_themes/simple/template/tags.tpl
r13556 r25487 13 13 <div id="content"> 14 14 {if isset($MENUBAR)}{$MENUBAR}{/if} 15 {if isset($tags)} 16 {if $display_mode == 'cloud'}15 16 {if $display_mode == 'cloud' and isset($tags)} 17 17 <div id="fullTagCloud"> 18 18 {foreach from=$tags item=tag} … … 20 20 {/foreach} 21 21 </div> 22 {/if} 23 {if $display_mode == 'letters'} 22 {/if} 23 24 {if $display_mode == 'letters' and isset($letters)} 24 25 <table> 25 26 <tr> 26 27 <td valign="top"> 27 28 {foreach from=$letters item=letter} 28 29 <fieldset class="tagLetter"> 29 30 <legend class="tagLetterLegend">{$letter.TITLE}</legend> 30 31 <table class="tagLetterContent"> 31 32 {foreach from=$letter.tags item=tag} 32 33 <tr class="tagLine"> 33 34 <td><a href="{$tag.URL}">{$tag.name}</a></td> 34 35 <td class="nbEntries">{$pwg->l10n_dec('%d photo', '%d photos', $tag.counter)}</td> 35 36 </tr> 36 37 {/foreach} 37 38 </table> 38 39 </fieldset> 39 40 {if isset($letter.CHANGE_COLUMN) } 40 41 </td> 41 42 <td valign="top"> 42 43 43 {/if} 44 {/foreach} 44 45 </td> 45 46 </tr> 46 47 </table> 47 {/if}48 48 {/if} 49 49 <div style="clear: both;"></div>
Note: See TracChangeset
for help on using the changeset viewer.