-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.html
76 lines (69 loc) · 2.81 KB
/
resources.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Resources</title>
<link href="css/style.css" rel="stylesheet"><link rel="icon" href="favicon.png">
</head>
<body>
<nav data-onPage="resources">
<div>
<a href="index.html"><img class="logo" src="res/logo-color.svg"></a>
<img class="close togglemenubutton" src="res/close.svg">
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="spaces.html">Spaces</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<section class="dimpage"></section>
<section class="mobNavBar">
<a href="index.html"><img class="logo" src="res/logo-white.svg"></a>
<img class="menu togglemenubutton" src="res/menu-white.svg">
</section>
<section id="resources" class="content">
<header>
<img class="background" src="res/resources_bkg.jpg">
<div class="overlay"></div>
<h1>Resources</h1>
</header>
<section>
<img class="info" src="res/resources_info.svg">
<a target="_blank" href="http://1789venturelab.com/"><img src="res/resources_gc.svg"></a>
</section>
</section>
<footer><div>
<a href="index.html"><img class="logo" src="res/logo-white.svg"></a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="spaces.html">Spaces</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<p>450 Ridge Rd #1213, Chapel Hill, NC 27599</p>
<p>1789management@gmail.com</p>
<p>(919) 962-5401</p>
<span class="copyright">Copyright © 2017 Jim Kitchen</span><br>
<span>Developed by Linker Logic Technologies</span>
</div></footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/nav.js"></script>
<script>
if ($("#resources section").width() >= 680)
$("#resources section .info").attr("src","res/resources_info_large.svg");
else $("#resources section .info").attr("src","res/resources_info.svg");
$(window).resize(function() {
if ($("#resources section").width() >= 680)
$("#resources section .info").attr("src","res/resources_info_large.svg");
else $("#resources section .info").attr("src","res/resources_info.svg");
});
</script>
</body>
</html>