forked from sergiolopes/shopping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (57 loc) · 2.34 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
<!doctype html>
<html lang="pt-br" Xmanifest="appcache.manifest">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Shopping</title>
<meta name="description" content="WebApp de exemplo">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/main.css">
<link rel="manifest" href="manifest.json">
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<link rel="icon" sizes="192x192" href="img/icon.png">
<meta name="theme-color" content="#F77F00">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Shopping">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon-precomposed" href="img/icon.png">
<!-- Tile icon for Win8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="img/icon.png">
<meta name="msapplication-TileColor" content="#F77F00">
<script>
if (window.location.protocol != "https:" && window.location.hostname == "sergiolopes.github.io")
window.location.href = "https:" + window.location.href.substring(window.location.protocol.length);
</script>
</head>
<body>
<div class="current-page">
<main class="home">
<h1 class="z-depth-1">O Shopping</h1>
<div class="collection z-depth-1">
<a href="lojas.html" class="collection-item waves-effect">
<i class="material-icons">card_giftcard</i>
Lojas & Restaurantes
</a>
<a href="pagar-estacionamento.html" class="collection-item waves-effect">
<i class="material-icons">directions_car</i>
Pagar estacionamento
</a>
<a href="https://github.com/sergiolopes/shopping" class="collection-item waves-effect" target="_blank">
<i class="material-icons">loyalty</i>
Código Fonte
</a>
</div>
</main>
</div><!--/.current-page-->
<script src="js/vendor/jquery.min.js"></script>
<script src="js/vendor/materialize-0.97.0.min.js"></script>
<script src="js/spa.js"></script>
<script src="js/main.js"></script>
<script src="js/install.js"></script>
<script src="js/pagamento.js"></script>
<script src="js/vendor/quagga.min.js"></script>
<script src="js/barcode.js"></script>
</body>
</html>