piwigo/template/yoga/menubar.tpl

15 lines
No EOL
337 B
Smarty

{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)}
{include file=$block->template|@get_extent:$id }
{else}
{$block->raw_content}
{/if}
</dl>
{/if}
{/foreach}
</div>
{/if}