1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 09:24:25 +03:00
ifhub.club/templates/skin/synio/modals/modal_base.tpl
2013-05-06 11:33:38 +07:00

44 lines
1.1 KiB
Smarty

{*
MODAL BASE TEMPLATE
Available options:
------------------
noTitle (bool) - Hide content
noContent (bool) - Hide content
noFooter (bool) - Hide footer
noCancel (bool) - Hide cancel button
*}
{block name='modal_options'}{/block}
<div class="modal {block name='modal_class'}{/block}" id="{block name='modal_id'}{/block}" data-type="modal" {block name='modal_attributes'}{/block}>
<header class="modal-header">
{if !$noTitle}<h3>{block name='modal_title'}Modal window{/block}</h3>{/if}
<a href="#" class="modal-close" data-type="modal-close"></a>
</header>
{block name='modal_header_after'}{/block}
{if !$noContent}
<div class="modal-content">
{block name='modal_content'}{/block}
</div>
{/if}
{block name='modal_content_after'}{/block}
{if !$noFooter}
<div class="modal-footer">
{block name='modal_footer'}{/block}
{if !$noCancel}
<button type="button" class="button" data-type="modal-close">{$aLang.favourite_form_tags_button_cancel}</button>
{/if}
</div>
{/if}
{block name='modal_footer_after'}{/block}
</div>