-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Expand file tree
/
Copy pathinbox.html
More file actions
42 lines (37 loc) · 1.29 KB
/
inbox.html
File metadata and controls
42 lines (37 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inbox | Gentelella 2026 v4</title>
<link rel="icon" href="../images/favicon.svg" type="image/svg+xml">
<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@300;400;500;600;700&display=swap" rel="stylesheet">
<script type="module" src="/src/main-v4.js"></script>
</head>
<body data-shell="admin" data-page="inbox" data-breadcrumb="Home > Inbox">
<main class="main">
<div class="page-wrapper">
<div class="page-header">
<div class="page-header-row">
<div>
<div class="page-pretitle">Communication</div>
<h1 class="page-title">Inbox</h1>
</div>
<div class="page-actions">
<button class="btn btn-outline" type="button">Mark all read</button>
<button class="btn btn-primary" type="button">
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M2 14L14 2M14 2H6M14 2v8"/></svg>
Compose
</button>
</div>
</div>
</div>
<div class="card">
<div id="inbox-root"></div>
</div>
</div>
</main>
</body>
</html>