-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnon-tech.html
More file actions
34 lines (32 loc) · 1.02 KB
/
Copy pathnon-tech.html
File metadata and controls
34 lines (32 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>Non Tech</title>
<link rel="stylesheet" href="css/flexboxgrid.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="css/non-tech.css">
<script src="js/vendor/jquery-3.1.1.min.js"></script>
<script src="js/vendor/handlebars.runtime.min.js"></script>
<script src="js/templates/event.min.js"></script>
<script src="data.js"></script>
<script>
var events = data.nonTech;
</script>
<style>
body {
background: #002D4A url("img/category/category-background/nontech-back.svg");
}
</style>
</head>
<body>
<div class="nontech-events">
<div id="nontechEvents" class="row"></div>
</div>
<div id="event-modal"></div>
<script src="js/events.js"></script>
</body>
</html>