-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathhead.ejs
More file actions
29 lines (17 loc) · 852 Bytes
/
head.ejs
File metadata and controls
29 lines (17 loc) · 852 Bytes
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
<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/4.3.1/css/bootstrap.min.css" />
<!-- Google font CSS -->
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700" rel="stylesheet">
<!-- this app's own css -->
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<!-- Next import js files -->
<!-- first we import jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- then bootstrap -->
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script>var apiKey="<%= process.env.API_KEY %>";</script>
<!-- then our app's own js file -->
<script src="js/main.js"></script>