-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (80 loc) · 3.48 KB
/
Copy pathindex.html
File metadata and controls
106 lines (80 loc) · 3.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>파이썬 한국 사용자 모임</title>
<link rel="stylesheet" href="/static/css/dist/styles.css">
</head>
<body class="bg-white min-h-screen flex flex-col">
<!-- 내비게이션 -->
<nav class="bg-white border-b">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center py-4">
<!-- 로고 + 텍스트 타이틀 -->
<div class="flex flex-row items-center space-x-4 w-auto">
<a class="navbar-brand" href="/">
<img class="h-12 mx-auto md:mx-0" src="/static/pythonkr/pythonkr-badge.png" alt="Python Korea Logo"/>
</a>
<h1 class="text-xl font-bold text-gray-800 mt-2 md:mt-0 text-center md:text-left">
파이썬 한국 사용자 모임
</h1>
</div>
<!-- 내비게이션 -->
<div class="hidden md:flex space-x-4">
<a class="text-gray-600 hover:text-gray-800" href="/about/">About</a>
<a class="text-gray-600 hover:text-gray-800" href="/activity/">Activity</a>
<a class="text-gray-600 hover:text-gray-800" href="/support/">Support</a>
<a class="text-gray-600 hover:text-gray-800" href="/events/">Events</a>
</div>
<!-- 모바일 메뉴 버튼 -->
<div class="md:hidden">
<button id="mobile-menu-button" class="text-gray-600 focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- 모바일 메뉴 -->
<div id="mobile-menu" class="hidden md:hidden px-4 pb-4">
<a class="block py-2 text-gray-600 hover:bg-gray-200" href="/about/">About</a>
<a class="block py-2 text-gray-600 hover:bg-gray-200" href="/activity/">Activity</a>
<a class="block py-2 text-gray-600 hover:bg-gray-200" href="/support/">Support</a>
<a class="block py-2 text-gray-600 hover:bg-gray-200" href="/events/">Events</a>
</div>
</nav>
<!-- 메인 -->
<main class="flex-grow container mx-auto px-4 py-8">
<div class="prose">
<p data-block-key="1xdb6">파이썬 한국 사용자 모임</p>
</div>
</main>
<!-- 푸터 -->
<footer class="bg-white border-t">
<div class="container mx-auto px-4 py-8">
<div class="flex flex-col md:flex-row justify-between items-start md:items-center space-y-4 md:space-y-0">
<!-- 로고 및 설명 -->
<div>
<h2 class="text-lg font-semibold text-gray-800">Python Korea</h2>
<p class="text-sm text-gray-500 mt-1">
파이썬 한국 사용자 모임은 파이썬을 사용하는 모든 사람들을 위한 열린 커뮤니티입니다.
</p>
<p class="mt-6 pt-4 text-sm text-gray-400">
© 2025 Python Korea. All rights reserved.
</p>
</div>
</div>
</div>
</footer>
<script>
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
</script>
</body>
</html>