-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathhead.ejs
More file actions
41 lines (31 loc) · 1.56 KB
/
head.ejs
File metadata and controls
41 lines (31 loc) · 1.56 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
<meta charset="UTF-8">
<title>Base Web App</title>
<!-- First we import our css files -->
<!-- bootstrap css -->
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" />
<!-- font awesome css -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<!-- this app's own css -->
<link rel="stylesheet" type="text/css" href="/css/main.css"/>
<!-- Next import js files -->
<!-- jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<!-- then bootstrap -->
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<!-- Now everything we'll need to use firebase -->
<script src="https://www.gstatic.com/firebasejs/5.5.0/firebase.js"></script>
<script type="text/javascript">
//replace this with the config in the code snippet provided from Firebase.
var config = {
apiKey: '<%= process.env.API_KEY %>', // this references the API_KEY environemnt variable!
authDomain: "databaseexample-5d86a.firebaseapp.com",
databaseURL: "https://databaseexample-5d86a.firebaseio.com",
projectId: "databaseexample-5d86a",
storageBucket: "databaseexample-5d86a.appspot.com",
messagingSenderId: "684265563648"
};
firebase.initializeApp(config);
</script>
<!-- then our app's own js file -->
<script src="/js/main.js"></script>