-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (121 loc) · 4.68 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Athegas Jullunch</title>
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
<meta content='yes' name='apple-mobile-web-app-capable'>
<meta content='black' name='apple-mobile-web-app-status-bar-style'>
<link rel="stylesheet" href="build/app.css">
</head>
<body>
<h1>
<img src="images/athega-light.svg">
</h1>
<main>
<div id="arrival" data-subscription="#arrival, #departure">
<h2>Välkommen till Athegas årliga jullunch</h2>
<img>
<div>
<h3></h3>
<p>
Du är gäst nummer <span class="arrived"></span> att anlända
och nummer <span class="arrived-company"></span> av dina
kollegor på <span class="company"></span>,
klockan <time></time>.
</p>
<p>Hjärtligt välkommen!</p>
</div>
</div>
<div id="departure" data-subscription="#arrival, #departure">
<h2>Tack för den här gången!</h2>
<img src="images/nf-logo.svg">
<div>
<h3>
Vi önskar dig en God Jul & ett Gott Nytt År, <span class="name"></span>.
</h3>
<p>
Vi kommer att ge en gåva till havet
<br>i ditt namn.
<br>
Det stödjer Naturskyddsföreningens arbete med att rädda Östersjön, för ett friskare hav.
</p>
</div>
</div>
<div id="guests" data-loop data-subscription="#guests">
<h2>Senaste gäster</h2>
<span><ol></ol></span>
</div>
<div id="companies" data-loop data-subscription="#companies">
<h2>Gäster per företag.</h2>
</div>
<div id="mulled_wine" class="items" data-loop data-subscription="#mulled_wine">
<div class="number">
<h3></h3>
<span>Serverade glas glögg</span>
</div>
<ul></ul>
</div>
<div id="drink" class="items" data-loop data-subscription="#drink">
<div class="number">
<h3></h3>
<span>Besök i baren</span>
</div>
<ul></ul>
</div>
<div id="food" class="items" data-loop data-subscription="#food">
<div class="number">
<h3></h3>
<span>Besök vid julbordet</span>
</div>
<ul></ul>
</div>
<div id="coffee" class="items" data-loop data-subscription="#coffee">
<div class="number">
<h3></h3>
<span>Kaffe på maten</span>
</div>
<ul></ul>
</div>
<div id="attendance" class="items" data-loop data-subscription="#attendance">
<div class="number arrived">
<h3></h3>
<span>Anlända gäster</span>
</div>
<div class="number present">
<h3></h3>
<span>Gäster i lokalen</span>
</div>
<div class="number departed">
<h3></h3>
<span>Mätta och belåtna gäster</span>
</div>
<ul></ul>
</div>
<div id="tagged_images" class="image_cube" data-loop>
<h2>Senaste bilder taggade <i>#athegajul</i></h2>
<span><ol></ol></span>
</div>
<div id="guest_images" class="image_cube" data-loop>
<h2>Senaste gäster</h2>
<span><ol></ol></span>
</div>
<div id="buzzwords" data-loop>
<ul></ul>
</div>
<div id="tweets" data-loop>
<ul></ul>
</div>
<template id="slide">
<div class="slide" data-loop>
<img>
</div>
</template>
</main>
<div id="notification"></div>
<script src="build/libs.js"></script>
<script src="build/app.js"></script>
<audio id="subscribed" src="sound/subscribed.mp3"></audio>
<button>Aktivera ljud</button>
</body>
</html>