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.

25 lines
1.0 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/article">文章列表</a> ] [ <a href="/fladmin/article/add">发布文章</a> ]<br><br>
  7. <form name="listarc">
  8. <div class="table-responsive"><table class="table table-striped table-hover">
  9. <thead><tr>
  10. <th>文档标题</th>
  11. <th>重复数量</th>
  12. </tr></thead>
  13. <tbody>
  14. <?php if($posts){ foreach ($posts as $row) { ?>
  15. <tr>
  16. <td><a href="/fladmin/article/index?typeid=0&keyword=<?php echo $row["title"]; ?>"><?php echo $row["title"]; ?></a></td>
  17. <td><?php echo $row["count"]; ?></td>
  18. </tr>
  19. <?php }} ?>
  20. </tbody>
  21. </table></div><!-- 表格结束 --></form><!-- 表单结束 -->
  22. </div></div><!-- 右边结束 --></div></div>
  23. </body></html>