ThinkAdmin/application/extra/view/admin.content.html
2017-03-07 16:04:13 +08:00

28 lines
1.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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">&times;</span>
</button>
<p style="font-size:18px;padding-bottom:10px">正在闭关Coding请随意看看!</p>
<p style="font-size:14px">Thank you so much.</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">&times;</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>