source: extensions/Flash_Gallery/template/floPure/blocks.tpl @ 3599

Last change on this file since 3599 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: 1.4 KB
Line 
1<div class="content stuffs_block">
2  <table id="table_content" border="0" cellspacing="0" cellpadding="0">
3    <tr>
4      <td id="section_up_left">&nbsp;</td>
5      <td id="section_up">&nbsp;</td>
6      <td id="section_up_right">&nbsp;</td>
7    </tr>
8    <tr>
9      <td id="section_left">&nbsp;</td>
10      <td id="section_in">
11{foreach from=$blocks item=block key=key}
12  {if $block.new_line}
13  <div class="content stuffs_block stuffs">
14  {/if}
15    <div id="stuffs_block_{$block.ID}" class="content {$block.CLASS}" {if !empty($block.WIDTH)}style="width: {$block.WIDTH}%;"{/if}>
16    {if isset($block.TITLE)}
17      <div class="titrePage">
18        {if !empty($block.U_EDIT)}
19        <ul class="categoryActions">
20          <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>
21        </ul>
22        {/if}
23      {if isset($block.TITLE_URL)}
24      <h2><a href="{$block.TITLE_URL}">{$block.TITLE}</a></h2>
25      {else}
26      <h2>{$block.TITLE}</h2>
27      {/if}
28      </div>
29    {/if}
30    {include file=$block.TEMPLATE}
31    </div>
32  {if $block.end_line}
33  </div>
34  {/if}
35{/foreach}
36      </td>
37          <td id="section_right">&nbsp;</td>
38    </tr>
39    <tr>
40      <td id="section_bottom_left">&nbsp;</td>
41      <td id="section_bottom" >&nbsp;</td>
42      <td id="section_bottom_right" >&nbsp;</td>
43    </tr>
44  </table>
45</div>
Note: See TracBrowser for help on using the repository browser.