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.

41 lines
1.7 KiB

7 years ago
  1. <div class="container">
  2. <div class="page-header">
  3. <h1 class="page-title"><?=$this->site->config('faq_title')?></h1>
  4. <p><?=$this->site->config('faq_description')?></p>
  5. </div>
  6. <div class="row">
  7. <div class="col-sm-4 col-md-3 col-lg-2">
  8. <!-- START:: FAQ 분류 목록 -->
  9. <ul class="nav nav-pills nav-stacked">
  10. <li class="<?=($current_category=="")?'active':''?>"><a href="<?=base_url('customer/faq')?>">전체보기 (<?=$total_count?>)</a></li>
  11. <?php foreach($faq_category_list as $cat) : ?>
  12. <li class="<?=$cat['active']?>"><a href="<?=$cat['link']?>"><?=$cat['title']?> (<?=$cat['count']?>)</a></li>
  13. <?php endforeach;?>
  14. </ul>
  15. <!-- END:: FAQ 분류 목록 -->
  16. </div>
  17. <div class="col-sm-8 col-md-9 col-lg-10">
  18. <div class="panel panel-default">
  19. <!-- START:: FAQ 실제 목록-->
  20. <table class="table table-striped">
  21. <thead>
  22. <tr>
  23. <th>번호</th>
  24. <th>제목</th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. <?php foreach($faq_list['list'] as $row) :?>
  29. <tr>
  30. <td><?=$row['nums']?></td>
  31. <td><a href="<?=$row['link']?>"><?=$row['faq_title']?></a></td>
  32. </tr>
  33. <?php endforeach;?>
  34. </tbody>
  35. </table>
  36. <!-- END:: FAQ 실제 목록-->
  37. </div>
  38. </div>
  39. </div>
  40. </div>