리빌더 부분 추가
This commit is contained in:
26
theme/rb.basic/skin/content/basic/content.skin.php
Normal file
26
theme/rb.basic/skin/content/basic/content.skin.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||
add_stylesheet('<link rel="stylesheet" href="'.$content_skin_url.'/style.css">', 0);
|
||||
?>
|
||||
|
||||
<article id="ctt" class="ctt_<?php echo $co_id; ?>">
|
||||
<div id="ctt_con">
|
||||
<?php
|
||||
|
||||
if(is_file(G5_THEME_PATH.'/page/'.$co_id.'.php')) {
|
||||
|
||||
$page_path = G5_THEME_PATH.'/page';
|
||||
$page_url = G5_THEME_URL.'/page';
|
||||
@include_once($page_path.'/'.$co_id.'.php');
|
||||
|
||||
}else{
|
||||
|
||||
echo $str;
|
||||
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
|
||||
</article>
|
||||
Reference in New Issue
Block a user