-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.ejs
31 lines (30 loc) · 1.17 KB
/
template.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>Transformation Matrix | Flatland Church</title>
<link rel="shortcut icon" href="https://flatlandchurch.com//fl_glyph_favicon.ico" />
<link rel="stylesheet" href="/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script async defer src="https://scripts.simpleanalyticscdn.com/latest.js"></script>
<noscript><img src="https://queue.simpleanalyticscdn.com/noscript.gif" alt=""></noscript>
</head>
<body>
<div id="app">
<%- content %>
</div>
<div class="modal" id="discipline-modal">
<div class="modal__overlay"></div>
<div class="modal__container">
<div class="modal__content">
</div>
<button onclick="closeModal()">Close</button>
</div>
</div>
<footer>
© <%= year %> • v<%= version %>
</footer>
<script src="/load.min.js"></script>
</body>
</html>