| 1 | {if isset($MENUBAR)}{$MENUBAR}{/if} |
|---|
| 2 | <div id="content" class="content"> |
|---|
| 3 | <div class="titrePage"> |
|---|
| 4 | <ul class="categoryActions"> |
|---|
| 5 | {if $display_mode != 'cloud'} |
|---|
| 6 | <li> |
|---|
| 7 | <a href="{$U_CLOUD}" title="{'show tag cloud'|@translate}" class="pwg-state-default pwg-button"> |
|---|
| 8 | <span class="pwg-icon pwg-icon-cloud"> </span><span class="pwg-button-text">{'cloud'|@translate}</span> |
|---|
| 9 | </a> |
|---|
| 10 | </li> |
|---|
| 11 | {/if} |
|---|
| 12 | |
|---|
| 13 | {if $display_mode != 'cumulus'} |
|---|
| 14 | <li> |
|---|
| 15 | <a href="{$PWG_CUMULUS_HREF}" title="{'cumulus cloud'|@translate}" rel="nofollow"> |
|---|
| 16 | <img src="{$PWG_CUMULUS_IMGS}/cumulus3d.png" class="button" alt="{'cumulus cloud'|@translate}"> |
|---|
| 17 | </a> |
|---|
| 18 | </li> |
|---|
| 19 | {/if} |
|---|
| 20 | |
|---|
| 21 | {if $display_mode != 'letters'} |
|---|
| 22 | <li> |
|---|
| 23 | <a href="{$U_LETTERS}" title="{'group by letters'|@translate}" class="pwg-state-default pwg-button" rel="nofollow"> |
|---|
| 24 | <span class="pwg-icon pwg-icon-letters"> </span><span class="pwg-button-text">{'letters'|@translate}</span> |
|---|
| 25 | </a> |
|---|
| 26 | </li> |
|---|
| 27 | {/if} |
|---|
| 28 | <li> |
|---|
| 29 | <a href="{$U_HOME}" title="{'Home'|@translate}" class="pwg-state-default pwg-button"> |
|---|
| 30 | <span class="pwg-icon pwg-icon-home"> </span><span class="pwg-button-text">{'Home'|@translate}</span> |
|---|
| 31 | </a> |
|---|
| 32 | </li> |
|---|
| 33 | </ul> |
|---|
| 34 | <h2>{'Tags'|@translate}</h2> |
|---|
| 35 | </div> |
|---|
| 36 | |
|---|
| 37 | {if isset($tags)} |
|---|
| 38 | {if $display_mode == 'cloud'} |
|---|
| 39 | <div id="fullTagCloud"> |
|---|
| 40 | {foreach from=$tags item=tag} |
|---|
| 41 | <span><a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{$pwg->l10n_dec('%d photo', '%d photos', $tag.counter)}">{$tag.name}</a></span> |
|---|
| 42 | {/foreach} |
|---|
| 43 | </div> |
|---|
| 44 | {/if} |
|---|
| 45 | |
|---|
| 46 | {if $display_mode == 'cumulus'} |
|---|
| 47 | <object data="{$PWG_CUMULUS_SWF}/tagcloud.swf" width="{$PWG_CUMULUS_WIDTH}" height="{$PWG_CUMULUS_HEIGHT}" type="application/x-shockwave-flash"> |
|---|
| 48 | <param name="movie" value="{$PWG_CUMULUS_SWF}/tagcloud.swf"> |
|---|
| 49 | <param name="allowScriptAccess" value="sameDomain"> |
|---|
| 50 | <param name="quality" value="high"> |
|---|
| 51 | {if ($PWG_CUMULUS_MODE_TRANSPARENT)} |
|---|
| 52 | <param name="wmode" value="transparent"> |
|---|
| 53 | {else} |
|---|
| 54 | <param name="bgcolor" value="#{$PWG_CUMULUS_BGCOLOR}"> |
|---|
| 55 | {/if} |
|---|
| 56 | <param name="flashvars" value="mode=tags&tcolor={$PWG_CUMULUS_COLOR1}&tcolor2={$PWG_CUMULUS_COLOR2}&hicolor={$PWG_CUMULUS_HICOLOR}&tspeed=100&distr=true&tagcloud=<tags>{foreach from=$tags item=tag}<a href='{$tag.URL}' style='{$tag.size}pt'>{$tag.display_name}</a>{/foreach}</tags>"> |
|---|
| 57 | </object> |
|---|
| 58 | {/if} |
|---|
| 59 | |
|---|
| 60 | {if $display_mode == 'letters'} |
|---|
| 61 | <table> |
|---|
| 62 | <tr> |
|---|
| 63 | <td valign="top"> |
|---|
| 64 | {foreach from=$letters item=letter} |
|---|
| 65 | <fieldset class="tagLetter"> |
|---|
| 66 | <legend class="tagLetterLegend">{$letter.TITLE}</legend> |
|---|
| 67 | <table class="tagLetterContent"> |
|---|
| 68 | {foreach from=$letter.tags item=tag} |
|---|
| 69 | <tr class="tagLine"> |
|---|
| 70 | <td><a href="{$tag.URL}">{$tag.name}</a></td> |
|---|
| 71 | <td class="nbEntries">{$pwg->l10n_dec('%d photo', '%d photos', $tag.counter)}</td> |
|---|
| 72 | </tr> |
|---|
| 73 | {/foreach} |
|---|
| 74 | </table> |
|---|
| 75 | </fieldset> |
|---|
| 76 | {if isset($letter.CHANGE_COLUMN) } |
|---|
| 77 | </td> |
|---|
| 78 | <td valign="top"> |
|---|
| 79 | {/if} |
|---|
| 80 | {/foreach} |
|---|
| 81 | </td> |
|---|
| 82 | </tr> |
|---|
| 83 | </table> |
|---|
| 84 | {/if} |
|---|
| 85 | {/if} |
|---|
| 86 | </div> <!-- content --> |
|---|