33 lines
973 B (Stored with Git LFS)
Plaintext
33 lines
973 B (Stored with Git LFS)
Plaintext
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
|
<title>리타게팅 리모컨</title>
|
|
<style>
|
|
{{CSS}}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<h1>리타게팅 리모컨</h1>
|
|
<div class="header-controls">
|
|
<div class="connection-status" id="connectionStatus">연결 대기중...</div>
|
|
<button class="btn-icon" onclick="refresh()">🔄</button>
|
|
<button class="btn-icon" onclick="expandAll()">📂</button>
|
|
<button class="btn-icon" onclick="collapseAll()">📁</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="characters-container" id="charactersContainer">
|
|
<div class="loading-message">캐릭터 목록을 불러오는 중...</div>
|
|
</div>
|
|
|
|
<div class="toast" id="toast"></div>
|
|
|
|
<script>
|
|
{{JS}}
|
|
</script>
|
|
</body>
|
|
</html>
|