-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (45 loc) · 1.87 KB
/
index.html
File metadata and controls
47 lines (45 loc) · 1.87 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Css Plugins -->
<link rel="stylesheet" type="text/css" href="https://cdn.bootcss.com/font-awesome/4.4.0/css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="https://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.css">
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<title>Takım Yıldızı Blog</title>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<!-- Js Plugins -->
<script src="https://cdn.bootcss.com/jquery/2.1.4/jquery.js"></script>
<script src="https://cdn.bootcss.com/bootstrap/3.3.4/js/bootstrap.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.6.0/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyA2mw8a2gcNL4xlVfZdlsSzulHP--3rOJ4",
authDomain: "vue-blog-c76a1.firebaseapp.com",
databaseURL: "https://vue-blog-c76a1.firebaseio.com",
projectId: "vue-blog-c76a1",
storageBucket: "vue-blog-c76a1.appspot.com",
messagingSenderId: "124028298764"
};
firebase.initializeApp(config)
</script>
<script type="text/javascript">
if(navigator.serviceWorker != undefined){
window.addEventListener('load',() => {
navigator.serviceWorker.register("/static/service-worker.js")
.then(()=>{
console.log("Tamam.")
})
})
}
</script>
</body>
</html>