source: extensions/Flash_Gallery/template/blocks.tpl @ 6769

Last change on this file since 6769 was 3599, checked in by tiico, 15 years ago

some minor corrections
add block.tpl from pwg_stuff (for flopure)
add prometeus module (javascript)
[TO BE COMPLETED]

File size: 722 bytes
Line 
1<div class="content flashgal_block">
2{foreach from=$blocks item=block key=key}
3    <div id="flashgal_block_{$block.ID}">
4    {if isset($block.TITLE)}
5      <div class="titrePage">
6        {if !empty($block.U_EDIT)}
7        <ul class="categoryActions">
8          <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>
9        </ul>
10        {/if}
11      {if isset($block.TITLE_URL)}
12      <h2><a href="{$block.TITLE_URL}">{$block.TITLE}</a></h2>
13      {else}
14      <h2>{$block.TITLE}</h2>
15      {/if}
16      </div>
17    {/if}
18        {include file=$block.TEMPLATE}
19
20    </div>
21{/foreach}
22</div>
Note: See TracBrowser for help on using the repository browser.