37 lines
1.4 KiB
PHP
37 lines
1.4 KiB
PHP
<?php
|
|
include_once('../../../../common.php');
|
|
include_once(G5_THEME_PATH.'/head.php');
|
|
|
|
$skin_url = G5_THEME_URL . '/skin/page/team';
|
|
?>
|
|
<!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">
|
|
<p>레이저월드는 편집팀, 취재팀, 디자인팀, 마케팅팀 등으로 구성되어 전문 콘텐츠를 제작합니다.</p>
|
|
<ul class="list-disc pl-5">
|
|
<li><strong>대표</strong> 박준성</li>
|
|
<li><strong>편집장</strong> 김편집</li>
|
|
<li><strong>취재팀장</strong> 이취재</li>
|
|
<li><strong>디자인팀장</strong> 장디자인</li>
|
|
</ul>
|
|
</section>
|
|
</article>
|
|
</main>
|
|
<script src="<?php echo $skin_url; ?>/js/script.js?v=1" defer></script>
|
|
</body>
|
|
</html>
|