source: extensions/UserCollections/template/themes/stripped.tpl @ 23551

Last change on this file since 23551 was 23551, checked in by mistic100, 11 years ago

many corrections & optimizations + remove useless code + clean

File size: 2.2 KB
Line 
1<div class="titrePage">
2        <div class="browsePath">
3                <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
4                <h2>{$TITLE}</h2>
5        </div>
6 
7  <div class="categoryActionsContainer">
8    <ul class="categoryActions group1">
9    {if isset($U_CADDIE) }
10      <li class="mainAction"><a href="{$U_CADDIE}" title="{'Add to caddie'|@translate}">{'Caddie'|@translate}</a></li>
11    {/if}
12       
13    {if $U_MAIL}
14      <li><a href="#mail_form" title="{'Send this collection my mail'|@translate}" class="mail_colorbox_open pwg-state-default pwg-button" rel="nofollow"
15          {if not $collection.PUBLIC}onClick="alert('{'The collection must be public in order to send it'|@translate|escape:javascript}');return false;"{/if}>
16            <span class="pwg-icon user-collections-mail-icon" style="background:url('{$ROOT_URL}{$USER_COLLEC_PATH}template/resources/mail.png') center center no-repeat;">&nbsp;</span><span class="pwg-button-text">{'Send'|@translate}</span>
17      </a></li>
18    {/if}
19    {if $U_CLEAR}
20      <li><a href="{$U_CLEAR}" title="{'Clear this collection'|@translate}" class="pwg-state-default pwg-button" rel="nofollow" onClick="return confirm('{'Are you sure?'|@translate|escape:javascript}');">
21        <span class="pwg-icon user-collections-clear-icon" style="background:url('{$ROOT_URL}{$USER_COLLEC_PATH}template/resources/bin.png') center center no-repeat;">&nbsp;</span><span class="pwg-button-text">{'Clear'|@translate}</span>
22      </a></li>
23    {/if}
24    {if $U_DELETE}
25      <li><a href="{$colelction.U_DELETE}" title="{'Delete this collection'|@translate}" class="pwg-state-default pwg-button" rel="nofollow" onClick="return confirm('{'Are you sure?'|@translate|escape:javascript}');">
26        <span class="pwg-icon user-collections-delete-icon" style="background:url('{$ROOT_URL}{$USER_COLLEC_PATH}template/resources/delete.png') center center no-repeat;">&nbsp;</span><span class="pwg-button-text">{'Delete'|@translate}</span>
27      </a></li>
28    {/if}
29 
30    {if !empty($COLLECTION_ACTIONS)}
31      {$COLLECTION_ACTIONS}
32    {/if}
33    </ul>
34  </div>
35</div>
36
37<div id="content" {if !$stripped.hideMenu}class="menuShown"{/if}>
38{$MENUBAR}
39<div id="content_cell">
Note: See TracBrowser for help on using the repository browser.