mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
21 lines
739 B
HTML
21 lines
739 B
HTML
<div class="ibox">
|
|
{if isset($title)}
|
|
<div class="ibox-title">
|
|
<h5>{$title}</h5>
|
|
</div>
|
|
{/if}
|
|
<div class="ibox-content fadeInUp animated">
|
|
{if isset($alert)}
|
|
<div class="alert alert-{$alert.type} alert-dismissible" role="alert">
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
{if isset($alert['title'])}<strong>{$alert.title}</strong><br/>{/if}
|
|
{if isset($alert['content'])}<p>{$alert.content}</p>{/if}
|
|
</div>
|
|
{/if}
|
|
{block name="content"}
|
|
{/block}
|
|
</div>
|
|
{block name='script'}{/block}
|
|
</div> |