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.

27 lines
1.2 KiB

7 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/keyword/add">添加关键词</a> ]<br><br>
  7. <form name="listarc"><div class="table-responsive"><table class="table table-striped table-hover">
  8. <thead><tr>
  9. <th>编号</th>
  10. <th>关键词</th>
  11. <th>链接网址</th>
  12. <th>管理</th>
  13. </tr></thead>
  14. <tbody>
  15. <?php foreach($posts as $row){ ?><tr>
  16. <td><?php echo $row->id; ?></td>
  17. <td><?php echo $row->keyword; ?></td>
  18. <td><?php echo $row->rpurl; ?></td>
  19. <td><a href="/fladmin/keyword/edit?id=<?php echo $row->id; ?>">修改</a> | <a onclick="delconfirm('/fladmin/keyword/del?id=<?php echo $row->id; ?>')" href="javascript:;">删除</a></td>
  20. </tr><?php } ?>
  21. </tbody></table></div><!-- 表格结束 --></form><!-- 表单结束 -->
  22. <div class="backpages">{{ $posts->links() }}</div>
  23. </div></div><!-- 右边结束 --></div></div>
  24. </body></html>