First Commit
This commit is contained in:
@ -0,0 +1,54 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
||||
add_stylesheet('<link rel="stylesheet" href="'.$content_skin_url.'/style.css">', 0);
|
||||
?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
<link rel="stylesheet" href="<?php echo G5_THEME_URL?>/css/sub.css">
|
||||
</head>
|
||||
<style>
|
||||
.sec {
|
||||
width:100%;
|
||||
background-color:#fff;
|
||||
}
|
||||
.sec .inner {
|
||||
width:100%;
|
||||
position:relative;
|
||||
margin:0 auto;
|
||||
padding:4% 2%;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div class="sub sub01" id="business01">
|
||||
<?php include_once(G5_THEME_PATH.'/head.php'); ?>
|
||||
<section class="visual">
|
||||
<div class="text_box">
|
||||
<h2><?php echo $g5['title']; ?></h2>
|
||||
<p class="text">
|
||||
<span><?php echo $g5['visual_txt'];?></span>
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="sec sec1">
|
||||
<article class="inner" class="ctt_<?php echo $co_id; ?>">
|
||||
<div id="ctt_con">
|
||||
<?php echo $str; ?>
|
||||
</div>
|
||||
</article>
|
||||
</section>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
<?php
|
||||
include_once(G5_THEME_PATH.'/tail.php');
|
||||
?>
|
||||
@ -0,0 +1,9 @@
|
||||
@charset "utf-8";
|
||||
|
||||
/* 내용관리 */
|
||||
#ctt {margin:10px 0;padding:10px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9}
|
||||
.ctt_admin {margin:0 5px;text-align:right}
|
||||
#ctt header h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
|
||||
#ctt_con {padding:10px 0}
|
||||
#ctt_con img{max-width:100%;height:auto}
|
||||
.ctt_img {text-align:center}
|
||||
Reference in New Issue
Block a user