쇼핑몰: #104 약어 정리에 따른 처리
This commit is contained in:
@ -4,8 +4,8 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
<link rel="stylesheet" href="<?php echo $latest_skin_url ?>/style.css">
|
||||
|
||||
<div class="lt">
|
||||
<a href="<?php echo G4_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>" class="lt_title" onclick="return false"><strong><?php echo $bo_subject ?></strong></a>
|
||||
<div class="lat">
|
||||
<a href="<?php echo G4_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>" class="lat_title" onclick="return false"><strong><?php echo $bo_subject ?></strong></a>
|
||||
<ul>
|
||||
<?php for ($i=0; $i<count($list); $i++) { ?>
|
||||
<li>
|
||||
@ -37,5 +37,5 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
<li>게시물이 없습니다.</li>
|
||||
<?php } ?>
|
||||
</ul>
|
||||
<div class="lt_more"><a href="<?php echo G4_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>"><span class="sound_only"><?php echo $bo_subject ?></span>더보기</a></div>
|
||||
<div class="lat_more"><a href="<?php echo G4_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>"><span class="sound_only"><?php echo $bo_subject ?></span>더보기</a></div>
|
||||
</div>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
/* 최근게시물 스킨 (latest) */
|
||||
.lt {position:relative;margin:0 0 1em;padding:0 1em 1.5em;border-bottom:1px solid #ddd}
|
||||
.lt ul {margin:0 0 1em;padding:0;list-style:none}
|
||||
.lt li {padding:0.2em 0}
|
||||
.lt a {color:#000;text-decoration:none}
|
||||
.lt_title {display:block;padding:1em 0}
|
||||
.lt_more {position:absolute;top:1em;right:1em}
|
||||
.lat {position:relative;margin:0 0 1em;padding:0 1em 1.5em;border-bottom:1px solid #ddd}
|
||||
.lat ul {margin:0 0 1em;padding:0;list-style:none}
|
||||
.lat li {padding:0.2em 0}
|
||||
.lat a {color:#000;text-decoration:none}
|
||||
.lat_title {display:block;padding:1em 0}
|
||||
.lat_more {position:absolute;top:1em;right:1em}
|
||||
@ -89,24 +89,15 @@ include_once(G4_SHOP_PATH.'/shop.head.php');
|
||||
?>
|
||||
</section>
|
||||
|
||||
<div>
|
||||
<?php echo latest('shop_basic', 'qa', 5, 30); ?>
|
||||
</div>
|
||||
<div>
|
||||
<?php echo latest('shop_basic', 'free', 5, 30); ?>
|
||||
</div>
|
||||
<div>
|
||||
<!-- 공지사항 -->
|
||||
<?php //echo latest('basic', 'notice', 3, 25); ?>
|
||||
</div>
|
||||
<div>
|
||||
<!-- 온라인 투표 -->
|
||||
<?php echo poll('basic'); ?>
|
||||
</div>
|
||||
<div>
|
||||
<!-- 방문자 수 -->
|
||||
<?php //echo visit('basic'); ?>
|
||||
</div>
|
||||
<section id="sidx_lat_poll">
|
||||
<h2>커뮤니티 및 투표</h2>
|
||||
<?php echo latest('shop_basic', 'qa', 5, 30); ?>
|
||||
<?php echo latest('shop_basic', 'free', 5, 30); ?>
|
||||
<!-- 공지사항 -->
|
||||
<?php //echo latest('basic', 'notice', 3, 25); ?>
|
||||
<!-- 온라인 투표 -->
|
||||
<?php echo poll('basic'); ?>
|
||||
</section>
|
||||
|
||||
<section id="sbn_idx">
|
||||
<h2>쇼핑몰 메인 배너</h2>
|
||||
@ -114,6 +105,11 @@ include_once(G4_SHOP_PATH.'/shop.head.php');
|
||||
<?php echo display_banner('메인'); ?>
|
||||
</section>
|
||||
|
||||
<section id="sidx_visit">
|
||||
<!-- 방문자 수 -->
|
||||
<?php echo visit('basic'); ?>
|
||||
</section>
|
||||
|
||||
<?php
|
||||
include_once(G4_SHOP_PATH.'/shop.tail.php');
|
||||
?>
|
||||
@ -4,8 +4,8 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
<link rel="stylesheet" href="<?php echo $latest_skin_url ?>/style.css">
|
||||
|
||||
<div class="lt">
|
||||
<strong class="lt_title"><a href="<?php echo G4_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>"><?php echo $bo_subject ?></a></strong>
|
||||
<div class="lat">
|
||||
<strong class="lat_title"><a href="<?php echo G4_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>"><?php echo $bo_subject ?></a></strong>
|
||||
<ul>
|
||||
<?php for ($i=0; $i<count($list); $i++) { ?>
|
||||
<li>
|
||||
@ -37,5 +37,5 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
<li>게시물이 없습니다.</li>
|
||||
<?php } ?>
|
||||
</ul>
|
||||
<div class="lt_more"><a href="<?php echo G4_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>"><span class="sound_only"><?php echo $bo_subject ?></span>더보기</a></div>
|
||||
<div class="lat_more"><a href="<?php echo G4_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>"><span class="sound_only"><?php echo $bo_subject ?></span>더보기</a></div>
|
||||
</div>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
/* 새글 스킨 (latest) */
|
||||
.lt_pc {float:left;margin-left:20px}
|
||||
.lt {position:relative;float:left;margin-bottom:20px;padding-bottom:10px;width:354px;height:150px;border-bottom:1px solid #ddd}
|
||||
.lt ul {margin:0 0 10px;padding:0;list-style:none}
|
||||
.lt li {padding:3px 0}
|
||||
.lt_title {display:block;padding:10px 0 8px}
|
||||
.lt_more {position:absolute;top:10px;right:0}
|
||||
.lat_pc {float:left;margin-left:20px}
|
||||
.lat {position:relative;float:left;margin-bottom:20px;padding-bottom:10px;width:354px;height:150px;border-bottom:1px solid #ddd}
|
||||
.lat ul {margin:0 0 10px;padding:0;list-style:none}
|
||||
.lat li {padding:3px 0}
|
||||
.lat_title {display:block;padding:10px 0 8px}
|
||||
.lat_more {position:absolute;top:10px;right:0}
|
||||
@ -4,8 +4,8 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
<link rel="stylesheet" href="<?php echo $latest_skin_url ?>/style.css">
|
||||
|
||||
<div class="lt">
|
||||
<strong class="lt_title"><a href="<?php echo G4_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>"><?php echo $bo_subject ?></a></strong>
|
||||
<div class="lat">
|
||||
<strong class="lat_title"><a href="<?php echo G4_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>"><?php echo $bo_subject ?></a></strong>
|
||||
<ul>
|
||||
<?php for ($i=0; $i<count($list); $i++) { ?>
|
||||
<li>
|
||||
@ -37,5 +37,5 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
<li>게시물이 없습니다.</li>
|
||||
<?php } ?>
|
||||
</ul>
|
||||
<div class="lt_more"><a href="<?php echo G4_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>"><span class="sound_only"><?php echo $bo_subject ?></span>더보기</a></div>
|
||||
<div class="lat_more"><a href="<?php echo G4_BBS_URL ?>/board.php?bo_table=<?php echo $bo_table ?>"><span class="sound_only"><?php echo $bo_subject ?></span>더보기</a></div>
|
||||
</div>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
/* 새글 스킨 (latest) */
|
||||
.lt_pc {float:left;margin-left:20px}
|
||||
.lt {position:relative;float:left;margin-bottom:20px;padding-bottom:10px;width:354px;height:150px;border-bottom:1px solid #ddd}
|
||||
.lt ul {margin:0 0 10px;padding:0;list-style:none}
|
||||
.lt li {padding:3px 0}
|
||||
.lt_title {display:block;padding:10px 0 8px}
|
||||
.lt_more {position:absolute;top:10px;right:0}
|
||||
.lat_pc {float:left;margin-left:20px}
|
||||
.lat {position:relative;float:left;margin-bottom:20px;padding-bottom:10px;width:354px;height:150px;border-bottom:1px solid #ddd}
|
||||
.lat ul {margin:0 0 10px;padding:0;list-style:none}
|
||||
.lat li {padding:3px 0}
|
||||
.lat_title {display:block;padding:10px 0 8px}
|
||||
.lat_more {position:absolute;top:10px;right:0}
|
||||
Reference in New Issue
Block a user