1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php Global $list_array, $total_page, $list_num, $total_count, $faq_cate_array, $faq_idx;
$cur_img_url = $j3_img_url."/".$sk['sk_img_path'];
if($skin_css!=''){ echo $skin_css; } else { ?> <!-- 상단 카테고리 내 위치 --> <style>
</style> <?php }?>
<?php if($is_admin){?><a class="absolute ab_top_right box100_40 align_c l_height40 bg_custom1" href="<?php echo "{$j3_adm_url}/faq.php";?>" target="_blank"><span class="white bold">FAQ 관리</span></a><?php } ?>
<div class="class_skin_idx_<?php echo $sk_idx;?>"> <div class="pt10 pb100"> <!--//글검색-->
<!--탭메뉴--> <div class="mt30 height50"> <ul id="tabs" class="relative height49 top_bold_line gray_line_b bg_gray" style='width:1200px;'> <li class="block float_l mr_1 box145_47 l_height47 align_c gray_l_line gray_r_line <?php if($faq_idx==''){?>bg_white<?php }?> pointer" rel="tab1" value='all'>전체보기</li> <?php for($i=0;$i<count($faq_cate_array);$i++){ $info = $faq_cate_array[$i]; ?> <li class="block float_l mr_1 box145_47 l_height47 align_c gray_l_line gray_r_line <?php if($faq_idx==$info['idx']){?>bg_white<?php }?> pointer " rel="tab2" value='<?php echo $info['idx'];?>'><?php echo $info['faq_cate'];?></li> <?php } ?> </ul> </div> <!--//탭메뉴--> <!--게시판--> <div> <?php $num = $total_count - ($page - 1) * $list_num; for($i=0;$i<count($list_array);$i++){ $info = $list_array[$i]; if($info['idx']!=''){ ?> <dl> <dt class="faq_title width_full txt14 gray_line_b2 pointer"> <span class="width140 p15_0 gray2 align_c" style="display:inline-block;"><?php echo $num;?></span> <span class="width140 p15_0 custom2 align_c" style="display:inline-block;"><?php echo $info['faq_cate'];?></span> <span class="p15_0 txt14 gray2" style="display:inline-block;"><a><?php echo $info['faq_subject'];?></a></span> </dt> <dd class="faq_cont p35_50 txt14 gray2 l_height20 gray_line_b2"><?php echo $info['faq_content'];?><span class="close float_r box100_30 align_c l_height30 gray_line pointer">닫기</span></dd> </dl> <?php } $num--; } ?> </div> <!--//게시판--> </div> </div>
|