init: 从宝塔同步到 Gitea
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
{include file="public/header"}
|
||||
<body>
|
||||
<div class="x-body">
|
||||
<div class="layui-btn no-print" onclick="jQuery('html').print()">打印</div>
|
||||
<table class="layui-table">
|
||||
<div style="text-align: center;font-size: 18px;font-weight:bold;">活动列表</div>
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="text-align: center;">桌子名称</th>
|
||||
<th style="text-align: center;">标题</th>
|
||||
<th style="text-align: center;">url链接</th>
|
||||
<th style="text-align: center;">内容</th>
|
||||
<th style="text-align: center;">备注</th>
|
||||
<th style="text-align: center;">显示位置</th>
|
||||
<th style="text-align: center;">创建时间</th>
|
||||
<th style="text-align: center;">状态</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach name="memo_list" item="vo"}
|
||||
<tr>
|
||||
<td>{$vo.table_name}</td>
|
||||
<td>{$vo.title}</td>
|
||||
<td>{$vo.url}</td>
|
||||
<td>{$vo.content}</td>
|
||||
<td>{$vo.position}</td>
|
||||
<td>{$vo.remark}</td>
|
||||
<td>{$vo.create_time}</td>
|
||||
{if condition="$vo.status == 1"}
|
||||
<td>正常</span>
|
||||
</td>
|
||||
{else}
|
||||
<td>锁定中</span>
|
||||
</td>
|
||||
{/if}
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user