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.

22 lines
802 B

7 years ago
  1. <div class="panel panel-default">
  2. <div class="panel-heading">
  3. <h4 class="panel-title"><?=$board['brd_title']?> 최신글</h4>
  4. </div>
  5. <table class="table table-condensed">
  6. <tbody>
  7. <?php foreach($list as $post) :?>
  8. <tr>
  9. <td><a href="<?=$post['link']?>"><?=$post['post_title']?></a></td>
  10. <td><?=$post['post_datetime']?></td>
  11. </tr>
  12. <?php endforeach;?>
  13. <?php if(count($list) == 0) :?>
  14. <tr>
  15. <td colspan="3" class="text-center">등록된 글이 없습니다.</td>
  16. </tr>
  17. <?php endif;?>
  18. </tbody>
  19. </table>
  20. <div class="panel-footer text-right">
  21. <a class="btn btn-default btn-xs" href="<?=base_url("board/{$board['brd_key']}")?>"> 보기</a>
  22. </div>
  23. </div>