41 lines
728 B
PHP
41 lines
728 B
PHP
|
|
<?php
|
||
|
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||
|
|
|
||
|
|
if(defined('G5_THEME_PATH')) {
|
||
|
|
require_once(G5_THEME_PATH.'/tail.php');
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
?>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
|
||
|
|
<a href="#header" id="goto_top">
|
||
|
|
<img src="<?=G5_IMG_URL?>/btn_top.png" />
|
||
|
|
</a>
|
||
|
|
<script>
|
||
|
|
$('#goto_top').click(function () {
|
||
|
|
$('body,html').animate({
|
||
|
|
scrollTop: 0
|
||
|
|
}, 800);
|
||
|
|
return false;
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
|
||
|
|
|
||
|
|
<script src="<?php echo G5_JS_URL ?>/swiper.js"></script>
|
||
|
|
<script src="<?php echo G5_JS_URL ?>/_custom.js"></script>
|
||
|
|
|
||
|
|
<?
|
||
|
|
if($is_member) {
|
||
|
|
include_once(G5_PATH."/ajax/memo_call.php");
|
||
|
|
include_once(G5_PATH."/ajax/board_call.php");
|
||
|
|
}
|
||
|
|
include_once(G5_PATH."/ajax/inventory_popup.php");
|
||
|
|
?>
|
||
|
|
|
||
|
|
<?php
|
||
|
|
include_once(G5_PATH."/tail.sub.php");
|
||
|
|
?>
|