1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!doctype html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>后台管理</title>
- <include file="Common:header"/>
- <include file="Common:left"/>
- <div class="main-wrap">
- <div class="crumb-wrap">
- <div class="crumb-list"><i class="icon-font"></i><a href="#">首页</a><span class="crumb-step">></span><span class="crumb-name">通知管理</span></div>
- </div>
- <div class="result-wrap">
- <form name="myform" id="myform" method="post">
- <div class="result-title">
- <div class="result-list">
- <a href="__CONTROLLER__/add"><i class="icon-font"></i>新增markdown文章</a>
- </div>
- </div>
- <div class="result-content">
-
- <table class="result-tab" width="100%">
- <tr>
- <!-- <th class="tc" width="5%"><input class="allChoose" name="" type="checkbox"></th> -->
- <th>标号</th>
- <th>标题</th>
- <th>时间</th>
- <!--<th>摘要</th>-->
- <th>操作</th>
- </tr>
- <volist name="firsts" id="vo">
- <tr>
- <td>{$vo.id}</td>
- <td>{$vo.title}</td>
- <td>{$vo.time|date="Y-m-d",###}</td>
- <!--<td>{$vo.summary}</td>-->
- <td>
- <a class="link-update" href="__CONTROLLER__/edit/id/{$vo.id}">修改</a>
- <a class="link-del" href="__CONTROLLER__/del/id/{$vo.id}" onclick="return confirm('你要删除{$vo.title} 吗?');">删除</a>
- </td>
- </tr>
- </volist>
- </table>
- </div>
- </form>
- </div>
- </div>
- <!--/main-->
- </div>
- </body>
- </html>
|