-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbase.ejs
55 lines (43 loc) · 1.81 KB
/
base.ejs
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118748329-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-118748329-1');
</script>
<meta charset="utf-8">
<title><%= htmlWebpackPlugin.options.title %></title>
<link rel="icon" href="https://myhomework.space/img/icon24.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="css/line-awesome-font-awesome.min.css" rel="stylesheet">
<%= htmlWebpackPlugin.tags.headTags %>
<%= htmlWebpackPlugin.tags.bodyTags %>
<script src="js/app.js"></script>
<script src="js/pages.js"></script>
<script src="js/login.js"></script>
</head>
<body>
<div id="app">
<div id="modalManager"></div>
<div class="topBar"></div>
<div id="login" class="page fullPage hidden"></div>
<div id="applicationAuth" class="page fullPage hidden"></div>
<div id="completeEmail" class="page fullPage hidden"></div>
<div id="resetPassword" class="page fullPage hidden"></div>
<div id="createAccount" class="page fullPage hidden"></div>
<div id="homework" class="page hidden"></div>
<div id="classes" class="page hidden"></div>
<div id="planner" class="page hidden"></div>
<div id="calendar" class="page hidden"></div>
<div id="settings" class="page hidden"></div>
<div id="help" class="page hidden"></div>
<div id="admin" class="page hidden"></div>
</div>
</body>
</html>