-
Notifications
You must be signed in to change notification settings - Fork 71
/
index.html
98 lines (70 loc) · 1.99 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
94
95
96
97
98
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Simple Offline Static Site</title>
<link rel="stylesheet" href="css/global.css">
</head>
<body>
@@include('images/svg-sprite/svg.svg')
<header class="main-header">
<h1>Offline Conf</h1>
<p>A <strong>fake</strong> conference all about offline capabilities in fakesville, fakerton.</p>
<p>If you've been here at least once in a browser that supports `serviceWorker` you'll be able to load it offline. Read <a href="https://css-tricks.com/serviceworker-for-offline">the article</a> or check out <a href="https://github.com/chriscoyier/Simple-Offline-Site">the repo</a>.</p>
</header>
<nav class="main-nav">
<ul>
<li>
<a href="#speakers">
<svg>
<use xlink:href="#icons-01"></use>
</svg>
<span>Speakers</span>
</a>
</li>
<li class="active">
<a href="#schedule">
<svg>
<use xlink:href="#icons-02"></use>
</svg>
<span>Schedule</span>
</a>
</li>
<li>
<a href="#tickets">
<svg>
<use xlink:href="#icons-03"></use>
</svg>
<span>Tickets</span>
</a>
</li>
</ul>
</nav>
<main class="tabs">
<div class="tab" id="speakers">
<h1>Speakers</h1>
<ul class="speaker-list">
<li>Fake Person</li>
<li>Fake Person</li>
<li>Fake Person</li>
</ul>
</div>
<div class="tab active" id="schedule">
<h1>Schedule</h1>
<dl class="schedule">
<dt>9:00 AM - Breakfast</dt>
<dd>Probably pancakes</dd>
<dt>10:00 AM - Speakers</dt>
<dd>Learning happens</dd>
<dt>8:00 PM - Party</dt>
<dd>Then go to bed</dd>
</dl>
</div>
<div class="tab" id="tickets">
<h1>Tickets</h1>
<p>Going fast <a href="#0">buy buy buy!</a></p>
</div>
</main>
<script src="js/global.js"></script>
</body>
</html>