/home/mjc1/public_html/j3demo/skin/content/content01.php


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
<?php
Global $cinfo;

$cur_img_url $j3_img_url."/".$sk['sk_img_path'];

if(
$skin_css!=''){
    echo 
$skin_css;
} else {
?>

<?php }?>

<div class="class_skin_idx_<?php echo $sk_idx;?>">
<?php if($is_admin){?><a class="absolute ab_top_right box100_40 align_c l_height40 bg_custom1" href="<?php echo "{$j3_adm_url}/content_reg.php?code={$cinfo['idx']}";?>" target="_blank"><span class="white bold">내용 관리</span></a><?php ?>

<?php if(file_exists("{$j3_data_path}/ico/content_header")){ ?>
        <div class="mb20 align_c content_header_class">
            <!--<img src="http://placehold.it/800x170" alt="상단이미지">-->
            <img src='<?php echo "{$j3_data_url}/ico/content_header";?>'>
        </div>
<?php }?>

        <article class="gray_line">
            <header class="screen_out"><?php echo $cinfo['co_id'];?>(<?php echo $cinfo['co_subject'];?>)</header>
            <div class="p10">

                <?php echo $cinfo['co_content'];?>

            </div>
        </article>

<?php if(file_exists("{$j3_data_path}/ico/content_footer")){ ?>
        <div class="mt20 align_c  content_footer_class">
            <!--<img src="http://placehold.it/1200x170" alt="하단이미지">-->
            <img src='<?php echo "{$j3_data_url}/ico/content_footer";?>'>
        </div>
<?php }?>
</div>
<?php echo $cinfo['co_css']; // 내용 개별 CSS/스크립트 처리용 ?>