Reset repository to README title only

Approach is changing entirely; clearing prior implementation
to start over from a clean slate.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-09 20:41:19 +09:00
parent 9d55819e30
commit cd79378f3c
33 changed files with 0 additions and 8451 deletions

View File

@@ -1,31 +0,0 @@
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>서버팩 목록</title>
<link rel="stylesheet" href="/static/styles.css" />
</head>
<body class="siteBody">
<header class="hero">
<div>
<p class="eyebrow">MC CUSTOM</p>
<h1>마인크래프트 서버팩 목록</h1>
<p class="heroText">manifest.json에 등록된 서버팩을 한 줄 카드 목록으로 제공합니다.</p>
</div>
<a class="primaryLink" href="/op">관리자 로그인</a>
</header>
<main class="pageWrap">
<section class="cardRow">
<% packs.forEach((pack) => { %>
<article class="packCard">
<h2><%= pack.name %></h2>
<p>manifest 키: <code><%= pack.file %></code></p>
<a class="ghostLink" href="/manifest/<%= pack.file %>.json">JSON 보기</a>
</article>
<% }) %>
</section>
</main>
</body>
</html>