First Commit
This commit is contained in:
27
web/html/theme/AT_WEB01/skin/popular/basic/popular.skin.php
Normal file
27
web/html/theme/AT_WEB01/skin/popular/basic/popular.skin.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
|
||||
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||
add_stylesheet('<link rel="stylesheet" href="'.$popular_skin_url.'/style.css">', 0);
|
||||
?>
|
||||
|
||||
<!-- 인기검색어 시작 { -->
|
||||
<section id="popular">
|
||||
<div>
|
||||
<h2>인기검색어</h2>
|
||||
<div class="popular_inner">
|
||||
<ul>
|
||||
<?php
|
||||
if( isset($list) && is_array($list) ){
|
||||
for ($i=0; $i<count($list); $i++) {
|
||||
?>
|
||||
<li><a href="<?php echo G5_BBS_URL ?>/search.php?sfl=wr_subject&sop=and&stx=<?php echo urlencode($list[$i]['pp_word']) ?>"><?php echo get_text($list[$i]['pp_word']); ?></a></li>
|
||||
<?php
|
||||
} //end for
|
||||
} //end if
|
||||
?>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- } 인기검색어 끝 -->
|
||||
10
web/html/theme/AT_WEB01/skin/popular/basic/style.css
Normal file
10
web/html/theme/AT_WEB01/skin/popular/basic/style.css
Normal file
@ -0,0 +1,10 @@
|
||||
@charset "utf-8";
|
||||
/* 인기검색어 */
|
||||
#popular {margin:8px 0 0;position:relative}
|
||||
#popular h2{display:inline-block;font-size:0.92em;color:#4b8bff;background:#fff;line-height:20px;padding:0 5px;border:1px solid #dcdcde;vertical-align:top}
|
||||
#popular .popular_inner{position:absolute;left:70px;top:2px;height:18px;overflow:hidden}
|
||||
#popular ul{display:inline-block}
|
||||
#popular ul:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#popular li{height:18px;line-height:18px;border-left:1px solid #c3c3c3;padding:0 10px;float:left}
|
||||
#popular li:first-child{border-left:0}
|
||||
#popular li a:hover{color:#a22121;text-decoration:underline}
|
||||
Reference in New Issue
Block a user