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,9 @@
<?php
if (!defined('_GNUBOARD_')) exit;
// history 페이지 스킨 광고 영역 설정
$history_skin_config = [
'left_ad' => false, // 좌측 광고 사용 안함
'right_ad' => false, // 우측 광고 사용 안함
];
?>
@@ -0,0 +1,6 @@
/* history style (reuse) */
.fade-in{ opacity: 0; animation: fadeIn 0.8s ease-out forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.prose p { margin-top: 0.8rem; margin-bottom: 0.8rem; line-height: 1.9; }
.prose h2 { margin-top: 1.2rem; margin-bottom: 0.6rem; color: #111827; }
Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

@@ -0,0 +1,38 @@
<?php
// 연혁 페이지
include_once('../../../../common.php');
include_once(G5_THEME_PATH.'/head.php');
$skin_url = G5_THEME_URL . '/skin/page/history';
?>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>연혁 | 레이저월드</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="<?php echo $skin_url; ?>/css/style.css?v=1">
</head>
<body class="bg-gray-100">
<main class="min-h-screen flex items-start justify-center py-12 px-4">
<article class="w-full max-w-5xl bg-white rounded-2xl shadow-lg p-6 md:p-12 fade-in">
<header class="text-center mb-6">
<h1 class="text-2xl md:text-3xl font-bold">회사 연혁</h1>
</header>
<section class="prose text-gray-700">
<ul class="list-disc pl-5">
<li><strong>1984</strong> - 월간 금형·공구 창간 (한국금형공업협동조합)</li>
<li><strong>1991</strong> - (주)한국산업정보센타 설립</li>
<li><strong>1993</strong> - 월간 레이저기술 창간</li>
<li><strong>2025-09-03</strong> - (주)레이저월드 설립</li>
</ul>
<p class="mt-4">지속적인 콘텐츠 축적과 산업 네트워크를 바탕으로 전문 미디어로 성장해 왔습니다.</p>
</section>
</article>
</main>
<script src="<?php echo $skin_url; ?>/js/script.js?v=1" defer></script>
</body>
</html>
@@ -0,0 +1,3 @@
document.addEventListener('DOMContentLoaded', function() {
console.log('History page loaded');
});