136 lines
3.4 KiB
PHP
136 lines
3.4 KiB
PHP
<?php
|
|
include_once('./_common.php');
|
|
|
|
if(defined('G5_THEME_PATH')) {
|
|
require_once(G5_THEME_SHOP_PATH.'/index.php');
|
|
return;
|
|
}
|
|
|
|
if (G5_IS_MOBILE) {
|
|
include_once(G5_MSHOP_PATH.'/index.php');
|
|
return;
|
|
}
|
|
|
|
define("_INDEX_", TRUE);
|
|
|
|
include_once(G5_SHOP_PATH.'/shop.head.php');
|
|
?>
|
|
|
|
<!-- 메인이미지 시작 { -->
|
|
<?php echo display_banner('메인', 'mainbanner.10.skin.php'); ?>
|
|
<!-- } 메인이미지 끝 -->
|
|
|
|
|
|
|
|
<?php if($default['de_type1_list_use']) { ?>
|
|
<!-- 히트상품 시작 { -->
|
|
<section id="idx_hit" class="sct_wrap">
|
|
<header>
|
|
<h2><a href="<?php echo shop_type_url('1'); ?>">히트상품</a></h2>
|
|
</header>
|
|
<?php
|
|
$list = new item_list();
|
|
$list->set_type(1);
|
|
$list->set_view('it_img', true);
|
|
$list->set_view('it_id', false);
|
|
$list->set_view('it_name', true);
|
|
$list->set_view('it_basic', true);
|
|
$list->set_view('it_cust_price', true);
|
|
$list->set_view('it_price', true);
|
|
$list->set_view('it_icon', true);
|
|
$list->set_view('sns', true);
|
|
$list->set_view('star', true);
|
|
echo $list->run();
|
|
?>
|
|
</section>
|
|
<!-- } 히트상품 끝 -->
|
|
<script>
|
|
//히트상품
|
|
$(function(){
|
|
$('#idx_hit .smt_40').owlCarousel({
|
|
loop:true,
|
|
nav:true,
|
|
autoplay:true,
|
|
autoplayHoverPause:true,
|
|
responsive:{
|
|
1000:{items:5}
|
|
}
|
|
})
|
|
});
|
|
</script>
|
|
<?php } ?>
|
|
|
|
<?php if($default['de_type3_list_use']) { ?>
|
|
<!-- 최신상품 시작 { -->
|
|
<section class="sct_wrap">
|
|
<header>
|
|
<h2><a href="<?php echo shop_type_url('3'); ?>">최신상품</a></h2>
|
|
</header>
|
|
<?php
|
|
$list = new item_list();
|
|
$list->set_type(3);
|
|
$list->set_view('it_id', false);
|
|
$list->set_view('it_name', true);
|
|
$list->set_view('it_basic', true);
|
|
$list->set_view('it_cust_price', true);
|
|
$list->set_view('it_price', true);
|
|
$list->set_view('it_icon', true);
|
|
$list->set_view('sns', true);
|
|
$list->set_view('star', true);
|
|
echo $list->run();
|
|
?>
|
|
</section>
|
|
<!-- } 최신상품 끝 -->
|
|
<?php } ?>
|
|
|
|
<?php if($default['de_type2_list_use']) { ?>
|
|
<!-- 추천상품 시작 { -->
|
|
<section class="sct_wrap">
|
|
<header>
|
|
<h2><a href="<?php echo shop_type_url('2'); ?>">추천상품</a></h2>
|
|
</header>
|
|
<?php
|
|
$list = new item_list();
|
|
$list->set_type(2);
|
|
$list->set_view('it_id', false);
|
|
$list->set_view('it_name', true);
|
|
$list->set_view('it_basic', true);
|
|
$list->set_view('it_cust_price', true);
|
|
$list->set_view('it_price', true);
|
|
$list->set_view('it_icon', true);
|
|
$list->set_view('sns', true);
|
|
$list->set_view('star', true);
|
|
echo $list->run();
|
|
?>
|
|
</section>
|
|
<!-- } 추천상품 끝 -->
|
|
<?php } ?>
|
|
|
|
<?php include_once(G5_SHOP_SKIN_PATH.'/boxevent.skin.php'); // 이벤트 ?>
|
|
|
|
<?php if($default['de_type5_list_use']) { ?>
|
|
<!-- 할인상품 시작 { -->
|
|
<section class="sct_wrap">
|
|
<header>
|
|
<h2><a href="<?php echo shop_type_url('5'); ?>">할인상품</a></h2>
|
|
</header>
|
|
<?php
|
|
$list = new item_list();
|
|
$list->set_type(5);
|
|
$list->set_view('it_id', false);
|
|
$list->set_view('it_name', true);
|
|
$list->set_view('it_basic', true);
|
|
$list->set_view('it_cust_price', true);
|
|
$list->set_view('it_price', true);
|
|
$list->set_view('it_icon', true);
|
|
$list->set_view('sns', true);
|
|
$list->set_view('star', true);
|
|
echo $list->run();
|
|
?>
|
|
</section>
|
|
<!-- } 할인상품 끝 -->
|
|
<?php } ?>
|
|
|
|
<?php
|
|
include_once(G5_SHOP_PATH.'/shop.tail.php');
|
|
?>
|