You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.4 KiB

8 years ago
  1. <!DOCTYPE html><html><head><title>单页面列表_后台管理</title>@include('admin.common.header')
  2. <div class="container-fluid">
  3. <div class="row">
  4. <!-- 左边开始 --><div class="col-sm-3 col-md-2 sidebar">@include('admin.common.leftmenu')</div><!-- 左边结束 -->
  5. <!-- 右边开始 --><div class="col-sm-9 col-md-10 rightbox"><div id="mainbox">
  6. <h2 class="sub-header">单页文档管理</h2>[ <a href="/fladmin/page/add">增加一个页面</a> ]<br><br>
  7. <form name="listarc"><div class="table-responsive"><table class="table table-striped table-hover">
  8. <thead>
  9. <tr>
  10. <th>编号</th>
  11. <th>页面名称</th>
  12. <th>别名</th>
  13. <th>更新时间</th>
  14. <th>管理</th>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. <?php if($posts){foreach($posts as $row){ ?>
  19. <tr>
  20. <td><?php echo $row["id"]; ?></td>
  21. <td><a href="/fladmin/page/edit?id=<?php echo $row["id"]; ?>"><?php echo $row["title"]; ?></a></td>
  22. <td><?php echo $row["filename"]; ?></td>
  23. <td><?php echo date('Y-m-d',$row["pubdate"]); ?></td>
  24. <td><a target="_blank" href="<?php echo get_front_url(array("type"=>"page","pagename"=>$row["filename"])); ?>">预览</a>&nbsp;<a href="/fladmin/page/edit?id=<?php echo $row["id"]; ?>">修改</a>&nbsp;<a onclick="delconfirm('/fladmin/page/del?id=<?php echo $row["id"]; ?>')" href="javascript:;">删除</a></td>
  25. </tr>
  26. <?php }} ?>
  27. </tbody>
  28. </table></div><!-- 表格结束 --></form><!-- 表单结束 -->
  29. </div></div><!-- 右边结束 --></div></div>
  30. </body></html>