-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
42 lines (38 loc) · 1.36 KB
/
list.html
File metadata and controls
42 lines (38 loc) · 1.36 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, viewport-fit=cover, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)">
<title>App List</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div id="splash">
<div class="splash-content">
<div class="splash-logo">RipeStore</div>
<div class="splash-loader"></div>
<div id="splash-status">Loading list...</div>
</div>
</div>
<nav class="navbar glass">
<div class="nav-content">
<a href="./" class="back-link">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M15 18l-6-6 6-6"/></svg>
Home
</a>
<div class="nav-brand" id="list-title">List</div>
<div class="w-60"></div>
</div>
</nav>
<main>
<section class="section">
<div id="list-grid" class="grid"></div>
</section>
</main>
<script type="module" src="assets/js/ui/list.js"></script>
</body>
</html>