-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (69 loc) · 3.01 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<base href="/initial_pwa/">
<!-- Meta Tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Railton's Teck">
<meta name="keywords" content="PWA,Notes,Progressive Web Apps,Javascript">
<meta name="description" content="PWA para notas simples desenvolvido com javascript puro">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="myNotes">
<meta name="msapplication-TileImage" content="img/icons/icon-144x144.png">
<meta name="msapplication-TileColor" content="#607d8b">
<meta name="theme-color" content="#607d8b">
<title>Teck's Notes | PWA</title>
<!-- Link for help with SEO -->
<link rel="canonical" href="https://railton98.github.io/initial_pwa">
<!-- Favicon -->
<link rel="icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="img/icons/icon-152x152.png">
<!-- Stylesheet -->
<link rel="stylesheet" href="/initial_pwa/css/styles.css">
<link rel="stylesheet" href="/initial_pwa/css/colors.css">
<!-- Manifest -->
<link rel="manifest" href="manifest.json">
<!-- Firebase Config -->
<!-- <script src="https://www.gstatic.com/firebasejs/5.6.0/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyDNqUzu53WdIERx6HqswyN2WlCcwHB14IQ",
authDomain: "initial-pwa-notes.firebaseapp.com",
databaseURL: "https://initial-pwa-notes.firebaseio.com",
projectId: "initial-pwa-notes",
storageBucket: "initial-pwa-notes.appspot.com",
messagingSenderId: "122758481160"
};
firebase.initializeApp(config);
</script> -->
<!-- Scripts -->
<script src="/initial_pwa/js/object.observe.pollyfil.js"></script>
<script src="/initial_pwa/js/array.observe.pollyfil.js"></script>
<script src="/initial_pwa/js/scripts.js"></script>
<!-- <script src="/initial_pwa/js/push.js"></script> -->
</head>
<body class="grey lighten-5 blue-grey-text">
<header id="header" class="container grey lighten-4">
<h1>Teck's Notes</h1>
</header>
<div id="content" class="container grey lighten-4">
<p>Adicione suas anotações a seguir...</p>
<form id="form-add-note" class="row">
<input type="text" placeholder="Anotações..." class="col-2 white">
<input type="submit" value="+" class="blue-grey white-text col-1">
</form>
<ul id="notes"></ul>
</div>
<br><br>
<footer>
<div class="container grey lighten-3">
<p>Acesse o <a href="https://github.com/Railton98/initial_pwa"><b>código fonte</b></a> deste projeto.</p>
<p>Modifique, adicione funcionalidades, fique à vontade. Afinal é <b>Open Source</b></p>
</div>
</footer>
</body>
</html>