-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
93 lines (78 loc) · 2.88 KB
/
index.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>PWAConf</title>
<link rel="manifest" href="./manifest.json" />
<link rel="stylesheet" href="./styles.css" />
<link rel="icon" type="image/png" href="./img/icons/favicon.png" />
<meta name="theme-color" content="#2A3443" />
<meta
name="description"
content="PWA Tutorial Application for a fictional conference."
/>
<!-- iOS -->
<link rel="apple-touch-icon" href="./img/icons/icon-144x144.png" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-status-bar-style" content="black" />
<meta name="mobile-web-app-title" content="PWAConf" />
</head>
<body>
<header><h1>PWAConf</h1></header>
<nav>
<a href="#speakers">Speakers</a> <a href="#schedule">Schedule</a>
<a href="#code-of-conduct">Code of conduct</a>
</nav>
<div class="alert" role="alert" hidden>
Your browser does not support ServiceWorker. The app will not be available
offline.
</div>
<main>
<p>
Welcome to PWAConf, the premier made-up PWA conference in the world! The
conference is held <b>September 13-14</b> in sunny Santa Cruz, CA.
</p>
<p>
The conference is a single day, single track event focused on building
kick-ass user experiences on the web.
</p>
<p>
Learn how to build this app yourself by
<a href="https://vaadin.com/tutorials/learn-pwas">doing the tutorial</a
>.
</p>
<h2 id="speakers">Speakers</h2>
<div class="speakers"><div class="loader" hidden>Loading...</div></div>
<h2 id="schedule">Schedule</h2>
<p>All the presentations will be held in the main auditorium.</p>
<div class="schedule"><div class="loader" hidden>Loading...</div></div>
<h2 id="code-of-conduct">Code of conduct</h2>
<p>
All attendees are required to follow the
<a href="http://confcodeofconduct.com/">code of conduct</a>. Be nice to
everyone or get kicked out.
</p>
</main>
<footer>
<p>
This is not a real conference app. This is a PWA tutorial you can find
on
<a href="https://vaadin.com/tutorials/learn-pwas"></a>
vaadin.com/tutorials/learn-pwas
</a>.
</p>
<p>
Created by
<a href="https://twitter.com/marcushellberg">@marcushellberg</a>, the
source code is available on
<a href="https://github.com/vaadin-learning-center/pwa-tutorial-basic"
> GitHub. </a>
Speaker images and names are created with
<a href="https://randomuser.me/">randomuser.me</a>.
</p>
</footer>
<script src="./app.js"></script>
</body>
</html>