blob: 62021bfc317de5ec81560c40214a08f9530b7371 (
plain)
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
|
<!doctype html>
<html lang="nl">
<head>
<meta charset="utf-8">
<title>Sogyo Adventure</title>
<meta name="description" content="The ticket shop for Sogyo employees">
<link rel="shortcut icon" type="image/jpg" href="img/logo_sogyo_rgb_199x200-1.jpg"/>
<link rel="stylesheet" href="style/main.css">
</head>
<body>
<header id="logo-header">
<img src="img/logo_sogyo_rgb_199x200-1.jpg">
</header>
<header id="mainheader">
Sogyo Adventure
</header>
<header id="sticky-header">
<nav>
<a id="home" href="index.html">
Home
</a>
|
<a id="map" href="map.html">
Discover
</a>
|
<a id="shoppingbasket" href="shoppingbasket.html">
Shopping basket <div class="badge">0</div>
</a>
|
<a id="myorders" href="orders.html">
My orders
</a>
|
<a id="admin" href="admin.html">
Admin
</a>
</nav>
</header>
<main>
<div id="sortmenu">
<div class="sorter" id="pricesorter">
<label>Sort on price:</label>
<button class="orderbutton" id="sortprice">
<span class="front">
</span>
</button>
</div>
<div class="sorter" id="locationsorter">
<label>Sort on location:</label>
<button class="orderbutton" id="sortprice">
<span class="front">
</span>
</button>
</div>
</div>
<div id="center-articles">
</div>
</main>
<template id="parkarticle">
<article>
<div class="parkname"></div>
<div class="parkdescription"></div>
<div class="order">
<div class="prices">
<div class="adultprice">Adults: <span class="sign">€</span><span class="price">32,-</span></div>
<div class="kidsprice">Kids: <span class="sign">€</span><span class="price">32,-</span></div>
<div class="discountrequirement">
<em>Family ticket:</em>
Buy <span class="adults">2</span> adult tickets & <span class="child">2</span> kid tickets for a <span class="percentage">15</span>% discount!
</div>
</div>
<div class="adultinput">
<label>Adults: </label><input placeholder="adults" type="number" class="numberofadults" />
</div>
<div class="kidsinput">
<label>Kids: </label><input placeholder="kids" type="number" class="numberofkids" />
</div>
<div class="total"><span class="sign">€</span><span class="price">0,-</span></div>
<button class="orderbutton">
<span class="front">
Add to shopping basket
</span>
</button>
</div>
</article>
</template>
<script type="module" src="src/index.js"></script>
</body>
</html>
|