blob: cca2d553554482af68efbf2615708f81b26c87f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{if !empty($blocks) }
<div id="menubar">
{foreach from=$blocks key=id item=block}
{if ( not empty($block->template) or not empty($block->raw_content) )}
<dl id="{$id}">
{if not empty($block->template)}
{known_template id=$id file=$block->template }
{else}
{$block->raw_content|@default}
{/if}
</dl>
{/if}
{/foreach}
</div>
{/if}
|