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