-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.32 KB
/
Copy pathindex.html
File metadata and controls
43 lines (39 loc) · 1.32 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>KPSC Archive</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles.css?v=20260418-4" />
</head>
<body>
<div class="page-shell">
<header class="topbar">
<div class="topbar__inner">
<h1>KPSC Archive</h1>
</div>
</header>
<main class="main-content">
<section aria-label="대회 목록">
<section class="section-head">
<h2>대회</h2>
</section>
<section class="overview" aria-label="대회 요약">
<div class="overview__item">
<span class="overview__label">누적 대회 수</span>
<strong id="contest-count">0</strong>
</div>
</section>
<section class="contest-list" id="contest-list" aria-live="polite"></section>
</section>
</main>
</div>
<script type="module" src="./app.js?v=20260418-4"></script>
</body>
</html>