first commit 2

This commit is contained in:
hmw1001
2026-06-11 18:47:38 +09:00
parent c768729ce6
commit 6f534e33a6
11095 changed files with 1595758 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// PC 전용 - 모바일 분기 제거 (모바일에서도 PC 레이아웃 유지)
if(!$is_admin && $group['gr_device'] == 'mobile')
alert($group['gr_subject'].' 그룹은 모바일에서만 접근할 수 있습니다.');
$g5['title'] = $group['gr_subject'];
include_once(G5_THEME_PATH.'/head.php');
include_once(G5_LIB_PATH.'/latest.lib.php');
?>
<style>
#container_title {display: none;}
</style>
<?php if(isset($gr_id) && $gr_id) { ?>
<div class="rb_gr flex_box" data-layout="rb_gr_<?php echo $gr_id ?>"></div>
<?php } ?>
<?php
include_once(G5_THEME_PATH.'/tail.php');