30 lines
608 B
HTML
30 lines
608 B
HTML
{extend name="admin/base"/}
|
||
{block name="body"}
|
||
<div class="main-box no-header clearfix">
|
||
<header class="box-header with-border">
|
||
<!-- 标题栏 -->
|
||
<h3 class="box-title">{$meta_title|default='新功能'}</h3>
|
||
<div class="pull-right">
|
||
</div>
|
||
</header>
|
||
|
||
<div class="box-body">
|
||
<table class="table table-striped">
|
||
<thead>
|
||
<tr>
|
||
<th align="right">名称</th>
|
||
<th>信息</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
{volist name="info" id="item"}
|
||
<tr>
|
||
<td align="right">{$key}:</td>
|
||
<td>{$item}</td>
|
||
</tr>
|
||
{/volist}
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
{/block} |