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
@@ -0,0 +1,29 @@
<?php
if (!defined('_INDEX_')) {
header('Location: ' . G5_URL);
exit;
}
// 이 레이아웃 전용 CSS 파일을 불러옵니다.
add_stylesheet('<link rel="stylesheet" href="'.G5_THEME_URL.'/rb.layout/basic.LR/style.css?ver='.G5_SERVER_TIME.'">', 0);
?>
<!-- 💡 [핵심 수정] Rebuilder 시스템과 연동되는 2단 레이아웃 구조로 변경 -->
<main class="layout-main-content">
<div class="two-column-layout container">
<!-- 1. 왼쪽 콘텐츠 영역 -->
<div class="col_left">
<div class="flex_box" data-layout="main-content-left">
</div>
</div>
<!-- 2. 오른쪽 사이드바 영역 -->
<aside class="col_right">
<div class="flex_box" data-layout="main-content-right">
</div>
</aside>
</div>
</main>
@@ -0,0 +1,25 @@
/*!* 💡 [핵심 수정] 공통 CSS의 position:fixed를 무력화합니다. *!*/
/*#header {*/
/* position: relative !important;*/
/*}*/
/* Basic.LR Layout Style */
.two-column-layout {
display: flex;
gap: 30px; /* 좌우 콘텐츠 사이의 간격 */
padding-top: 20px;
padding-bottom: 20px;
}
.col_left {
width: 75%; /* 왼쪽 콘텐츠 너비 */
flex-shrink: 0;
}
.col_right {
width: 25%; /* 오른쪽 사이드바 너비 */
flex-shrink: 0;
}
/* 모바일 반응형 */