forked from the-tricktionary/web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.76 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
<!DOCTYPE html>
<html ng-app="trick">
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width , initial-scale=1" name="viewport">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="theme-color" content="#fe3500">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="/static/css/style.css">
<link rel="stylesheet" href="/static/css/open-sans.css">
<link rel="stylesheet" href="/static/css/font-awesome.css">
<link rel="icon" href="/static/img/icon.png">
<title>Tricktionary</title>
<script src="/static/js/angular.min.js"></script>
<script src="/static/js/angular-resource.min.js"></script>
<script src="/static/js/angular-route.min.js"></script>
<script src="/static/js/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyD07mROu__kGOuJ-0MyjtjS6R5-DiTfUpM",
authDomain: "project-5641153190345267944.firebaseapp.com",
databaseURL: "https://project-5641153190345267944.firebaseio.com",
storageBucket: "project-5641153190345267944.appspot.com",
};
firebase.initializeApp(config);
</script>
<script src="/static/js/angularfire.min.js"></script>
<script src="/trick.js"></script>
<script src="/dash/dash.js"></script>
<script src="/details/details.js"></script>
</head>
<body>
<nav>
<img src="/static/img/tricktionary2.svg" />
<div> Tricktionary</div>
<a href="#!/dash">Dashboard</a>
<!--<a href="#!/list">Tricks</a>-->
</nav>
<div ng-view></div>