-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.comparison.html
58 lines (58 loc) · 1.8 KB
/
index.comparison.html
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html
lang="en"
x-data="{
light: false,
appmenu: false,
}"
:light="light"
style="display: none; /* CLS */"
>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="A lightweight template for a PWA with Material-looking styles.">
<script src="//unpkg.com/alpinejs" defer></script>
<title>Vanilla PWA Template</title>
</head>
<body>
<header icon="search">
<input type="text" placeholder="Search nothing">
<button
icon
@click="light = !light"
x-text="light ? 'light_mode' : 'dark_mode'"
:rotate="light"
/>
<button icon @click="appmenu = true">more_vert</button>
</header>
<nav>
<a page="about" icon="star_border">Oblíbené</a>
<a page="home" icon="watch_later">Poslední</a>
<a page="about" icon="people_alt">Kontakty</a>
</nav>
<main id="main"></main>
<dialog appmenu :active="appmenu">
<div scrim @click="appmenu = false"></div>
<title>Menu Title</title>
<div icon="notes">
<title>Some notes</title>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nihil, deleniti.</p>
</div>
<div icon="info">
<p>Lorem, ipsum dolor.</p>
</div>
<div>
<button icon="settings">Settings & Preferences</button>
<button icon="help_outline">Help & Feedback</button>
<button icon="analytics">Project Licence</button>
</div>
<footer>
© Jakub Slabý • 2021
</footer>
</dialog>
<script type="module" src="/src/main.ts" defer></script>
</body>
</html>