32 lines
1.4 KiB
HTML
32 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>The Meme Protocol Review</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=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/assets/styles.css">
|
|
<script type="module" src="/assets/admin.js"></script>
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<div class="brand">THE_MEME_PROTOCOL_REVIEW</div>
|
|
<div class="admin-actions">
|
|
<button class="secondary-action" id="refresh-review" type="button">REFRESH</button>
|
|
<button class="primary-action" id="approve-selected" type="button">APPROVE_SELECTED</button>
|
|
<button class="secondary-action danger-action" id="delete-selected" type="button">DELETE_SELECTED</button>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="shell">
|
|
<div class="status-line" aria-live="polite">
|
|
<span id="review-status">PENDING_REVIEW</span>
|
|
<span class="live"><span class="pulse"></span><span id="review-count">0 ITEMS</span></span>
|
|
</div>
|
|
<section class="meme-grid" id="review-grid" aria-label="Pending meme review"></section>
|
|
</main>
|
|
</body>
|
|
</html>
|