mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
22 lines
869 B
PHP
22 lines
869 B
PHP
<div class="ibox">
|
|
{block name="style"}{/block}
|
|
{if isset($title)}
|
|
<div class="ibox-title notselect">
|
|
<h5>{$title}</h5>
|
|
{block name="button"}{/block}
|
|
</div>
|
|
{/if}
|
|
<div class="ibox-content">
|
|
{if isset($alert)}
|
|
<div class="alert alert-{$alert.type} alert-dismissible" role="alert" style="border-radius:0">
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
{if isset($alert['title'])}<p style="font-size:18px;padding-bottom:10px">{$alert.title}</p>{/if}
|
|
{if isset($alert['content'])}<p style="font-size:14px">{$alert.content}</p>{/if}
|
|
</div>
|
|
{/if}
|
|
{block name="content"}{/block}
|
|
</div>
|
|
{block name='script'}{/block}
|
|
</div> |