-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.html
82 lines (77 loc) · 3.52 KB
/
store.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
<!--
Tesomas.Camp PWA Rewrite
Written by Jay Poffinbarger
This project makes use of the free version of Font Awesome for the icons.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<meta name="Description" content="Tesomas.Camp supplies quick access to information and tools that will make
your visit to Camp Tesomas as fun and engaging as possible.">
<script src="https://kit.fontawesome.com/1b88120e53.js" crossorigin="anonymous"></script>
<meta charset="utf-8">
<title>Tesomas Scout Camp</title>
<!--Import CSS and Web Manifest File-->
<link rel="stylesheet" href="css/main.css" />
<link rel="manifest" href="manifest.json">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<!--iOS Specific PWA Elements. Can be removed once Apple supports web manifest-->
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="Tesomas Scout Camp">
<meta name="apple-mobile-web-app-title" content="Tesomas Scout Camp">
<meta name="theme-color" content="#517799">
<meta name="msapplication-navbutton-color" content="#517799">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="msapplication-starturl" content="/index.html">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no">
<link rel="icon" sizes="128x128" href="/images/touch/icon-128x128.png">
<link rel="apple-touch-icon" sizes="128x128" href="/images/touch/icon-128x128.png">
<link rel="icon" sizes="192x192" href="/images/touch/icon-192x192.png">
<link rel="apple-touch-icon" sizes="192x192" href="/images/touch/icon-192x192.png">
<link rel="icon" sizes="256x256" href="/images/touch/icon-256x256.png">
<link rel="apple-touch-icon" sizes="256x256" href="/images/touch/icon-256x256.png">
<link rel="icon" sizes="384x384" href="/images/touch/icon-384x384.png">
<link rel="apple-touch-icon" sizes="384x384" href="/images/touch/icon-384x384.png">
<link rel="icon" sizes="512x512" href="/images/touch/icon-512x512.png">
<link rel="apple-touch-icon" sizes="512x512" href="/images/touch/icon-512x512.png">
</head>
<body>
<header>
<i class="fas fa-chevron-left fa-2x" onclick="history.back()"></i>
<h1>Store</h1>
</header>
<!--Tile Elements Wrapper-->
<div class="tile-wrapper">
<!--Main Tiles Wrapper-->
<ul>
<!--Call Tile-->
<li id="call" onclick="location.href='tel:7153653111'">
<h2>Order Firewood</h2>
<div><a class="fas fa-phone fa-4x"></a></div><br>
</li>
<!--Photo order Tile-->
<li id="photo-order" onclick="location.href='photo-order.html'">
<h2>Order Photos</h2>
<div><a class="fas fa-camera fa-5x"></a></div><br>
</li>
<!--Store Tile-->
<li id="store" onclick="location.href='https://scoutshop-827020.square.site/'">
<h2>Smiley Store</h2>
<div><a class="fas fa-cash-register fa-5x"></a></div><br>
</li>
</ul>
</div>
<!--Bottom Image-->
<footer></footer>
<script>
window['isUpdateAvailable'].then(isAvailable => {
if (isAvailable) {
alert('New Update available! Reload the app to see the new changes.');
}
});
</script>
</body>
</html>