aboutsummaryrefslogtreecommitdiffstats
path: root/themes/default/template/menubar.tpl
blob: 8b1e8f4b68c1a163121b1c38bb3ffa334409222a (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>
{/if}