mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
28 lines
1.3 KiB
HTML
28 lines
1.3 KiB
HTML
<div class="ibox">
|
|
{if isset($title)}
|
|
<div class="ibox-title">
|
|
<h5>{$title}</h5>
|
|
</div>
|
|
{/if}
|
|
<div class="ibox-content fadeInUp animated">
|
|
<div class="alert alert-success 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>
|
|
<p style="font-size:18px;padding-bottom:10px">请个了小假,回来再补代码!</p>
|
|
<p style="font-size:14px">这几天在杭州待着,有在那里的朋友可以出来带带路哦!</p>
|
|
</div>
|
|
{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> |