1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 16:04:24 +03:00
ifhub.club/application/frontend/skin/synio/modals/modal_base.tpl

40 lines
1 KiB
Smarty
Raw Normal View History

2013-05-06 08:45:04 +03:00
{**
* Базовый шаблон модальных окон
*}
{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}>
2013-05-06 09:19:40 +03:00
{* Header *}
{block name='modal_title' hide}
2013-05-06 09:19:40 +03:00
<header class="modal-header">
<h3>{$smarty.block.child}</h3>
2013-05-06 09:19:40 +03:00
<a href="#" class="modal-close" data-type="modal-close"></a>
</header>
{/block}
{block name='modal_header_after'}{/block}
2013-05-04 17:10:22 +03:00
2013-05-06 09:19:40 +03:00
{* Content *}
{block name='modal_content' hide}
<div class="modal-content">
{$smarty.block.child}
</div>
{/block}
{block name='modal_content_after'}{/block}
2013-05-06 09:19:40 +03:00
{* Footer *}
{block name='modal_footer'}
<div class="modal-footer">
{block name='modal_footer_begin'}{/block}
{block name='modal_footer_cancel'}
<button type="button" class="button" data-type="modal-close">{$aLang.favourite_form_tags_button_cancel}</button>
{/block}
2013-05-04 17:10:22 +03:00
</div>
{/block}
2013-05-04 17:10:22 +03:00
{block name='modal_footer_after'}{/block}
</div>