24 lines
988 B
PHP
24 lines
988 B
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|
|
|
add_stylesheet('<link rel="stylesheet" href="'.G5_THEME_URL.'/shop/rb.layout/Trend07/style.css?ver='.G5_SERVER_TIME.'">', 0);
|
|
?>
|
|
|
|
<!-- 1. 메인 비주얼 (커스텀 모듈) -->
|
|
<?php include_once(G5_THEME_PATH.'/rb.custom/pns_visual/module.php'); ?>
|
|
|
|
<!-- 2. 제품 소개 (커스텀 모듈) -->
|
|
<?php include_once(G5_THEME_PATH.'/rb.custom/pns_product/module.php'); ?>
|
|
|
|
<!-- 3. 브랜드 배너 (커스텀 모듈) -->
|
|
<?php include_once(G5_THEME_PATH.'/rb.custom/pns_brand/module.php'); ?>
|
|
|
|
<!-- 4. 추가 콘텐츠 영역 (관리자 설정 가능) -->
|
|
<div class="main-content-wrapper container">
|
|
<main class="layout-main-content">
|
|
<div class="flex_box" data-layout="main-content-bottom">
|
|
<?php if($is_admin) { echo "<div class='guide-box'>관리자 안내: [main-content-bottom] 영역에 추가 모듈(게시판 등)을 배치하세요.</div>"; } ?>
|
|
</div>
|
|
</main>
|
|
</div>
|