lst.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>后台管理</title>
  6. <include file="Common:header"/>
  7. <include file="Common:left"/>
  8. <div class="main-wrap">
  9. <div class="crumb-wrap">
  10. <div class="crumb-list"><i class="icon-font"></i><a href="#">首页</a><span class="crumb-step">&gt;</span><span class="crumb-name">通知管理</span></div>
  11. </div>
  12. <div class="result-wrap">
  13. <form name="myform" id="myform" method="post">
  14. <div class="result-title">
  15. <div class="result-list">
  16. <a href="__CONTROLLER__/add"><i class="icon-font"></i>新增markdown文章</a>
  17. </div>
  18. </div>
  19. <div class="result-content">
  20. <table class="result-tab" width="100%">
  21. <tr>
  22. <!-- <th class="tc" width="5%"><input class="allChoose" name="" type="checkbox"></th> -->
  23. <th>标号</th>
  24. <th>标题</th>
  25. <th>时间</th>
  26. <!--<th>摘要</th>-->
  27. <th>操作</th>
  28. </tr>
  29. <volist name="firsts" id="vo">
  30. <tr>
  31. <td>{$vo.id}</td>
  32. <td>{$vo.title}</td>
  33. <td>{$vo.time|date="Y-m-d",###}</td>
  34. <!--<td>{$vo.summary}</td>-->
  35. <td>
  36. <a class="link-update" href="__CONTROLLER__/edit/id/{$vo.id}">修改</a>
  37. <a class="link-del" href="__CONTROLLER__/del/id/{$vo.id}" onclick="return confirm('你要删除{$vo.title} 吗?');">删除</a>
  38. </td>
  39. </tr>
  40. </volist>
  41. </table>
  42. </div>
  43. </form>
  44. </div>
  45. </div>
  46. <!--/main-->
  47. </div>
  48. </body>
  49. </html>