source: extensions/luciano/template/stuffs_blocks.tpl @ 27153

Last change on this file since 27153 was 18299, checked in by plg, 12 years ago

fix margin bug with PWG Stuffs

File size: 638 bytes
Line 
1{foreach from=$blocks item=block key=key}
2        <div id="stuffs_block_{$block.ID}" class="content contentWithMenu">
3        {if isset($block.TITLE)}
4                <div class="titrePage">
5                        {if !empty($block.U_EDIT)}
6                        <ul class="categoryActions">
7                                <li><a href="{$block.U_EDIT}" title="{'edit'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/category_edit.png" class="button" alt="{'edit'|@translate}"/></a></li>
8                        </ul>
9                        {/if}
10                {if isset($block.TITLE_URL)}
11                <h2><a href="{$block.TITLE_URL}">{$block.TITLE}</a></h2>
12                {else}
13                <h2>{$block.TITLE}</h2>
14                {/if}
15                </div>
16        {/if}
17        {include file=$block.TEMPLATE}
18        </div>
19{/foreach}
Note: See TracBrowser for help on using the repository browser.