piwigo/template/yoga/menubar.tpl
patdenice 9d88e93a99 - Move filter button back to menubar_categories.tpl.
- Add dutch plugins language.

git-svn-id: http://piwigo.org/svn/trunk@2710 68402e56-0260-453c-a942-63ccdbb3a9ee
2008-10-11 10:17:25 +00:00

15 lines
No EOL
330 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 }
{else}
{$block->raw_content|@default}
{/if}
</dl>
{/if}
{/foreach}
</div>
{/if}