-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlegacy.html
115 lines (107 loc) · 5.33 KB
/
legacy.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
Open Air Pub | The Best Place On Earth
</title>
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- ========== //Nav section ========== -->
<header class="navbar navbar-transparent navbar-fixed-top">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar bg-light"></span>
<span class="icon-bar bg-light"></span>
<span class="icon-bar bg-light"></span>
</button>
<a class="navbar-brand" href="#">
<img src="img/oap_logo_dark.svg" alt=""/>
</a>
</div>
<nav class="navbar-collapse collapse" role="navigation">
<ul class="main-nav navbar-nav Tc-w">
<li class="M-5 P-lr5 Ov-h">
<a href="/faq.html" class="active D-ib">
<span data-hover="faq">faq</span>
</a>
</li>
<li class="reveal-dropdown M-5 P-lr5">
<li class="M-5 P-lr5 Ov-h">
<a href="/lineup.html" class="D-ib">
<span data-hover="lineup">lineup</span>
</a>
<!--<a href="/lineup.html" class="D-ib active Ov-h">
<span data-hover="line up">line up</span>
<span class="reveal-button">+</span>
</a>
<ul class="dropdown-submenu mh-hide W-80x">
<li class="M-5"><a href="/schedule-w1.html">aug 31>4</a></li>
<li class="M-5"><a href="/schedule-w2.html">sept 8>11</a></li>
</ul>-->
</li>
<li class="M-5 Ov-h P-lr5">
<a href="/the-loop.html" class="D-ib"><span data-hover="the loop">the loop</span></a>
</li>
<li class="M-5 Ov-h P-lr5">
<a href="/media.html" class="D-ib"><span data-hover="media">media</span></a>
</li>
<li class="reveal-dropdown M-5 P-lr5">
<a href="/get-involved.html" class="D-ib Ov-h">
<span data-hover="get involved">get involved</span>
<span class="reveal-button">+</span>
</a>
<ul class="dropdown-submenu mh-hide">
<li class="M-5"><a href="/partners.html">partners</a></li>
<li class="M-5"><a href="/volunteer.html">volunteer</a></li>
<li class="M-5"><a href="/press.html">press</a></li>
</ul>
</li>
</ul>
</nav>
</header>
<!-- ========== //Backdrop title ========== -->
<section class = "section-header P-t50 M-20">
<h1 class="Tc-c Fw-b">legacy</h1>
<h2 class="Tc-a Fw-b">legends, myths, history</h2>
</section>
<!-- ========== //The Legacy section ========== -->
<section id="the_legacy" class="P-t20">
</section>
<!-- ========= //Footer section ========= -->
<footer class="P-tb10">
<p class = "D-ib W-33 bg-aqua"></p>
<p class = "Ta-c P-tb10">
<a class = "D-ib B-cir fa fa-facebook" href="http://facebook.com/OpenAirPub"></a>
<a class = "D-ib B-cir fa fa-instagram" href="http://instagram.com/OpenAirPub"></a>
<!--a class = "D-ib B-cir fa fa-twitter" href="https://twitter.com/OpenAirPub"></a-->
</p>
<p class = "Ta-c P-tb10">
<a href="getinvolved.html#contact">contact</a>
<span href="#"> / </span>
<a href="getinvolved.html#team" >the team</a>
<span href="#"> / </span>
<a href="https://wiki.mcgilleus.ca/Open_Air_Pub">the legacy</a>
</p>
<p class="P-tb10">© Open Air Pub 2015</p>
</footer>
<script src="js/jquery-2.1.1.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/smooth-scroll.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<script type="text/javascript">
//to link an FAQ, use href: /faq.html#(insert faq tag)
$(window).load(function(event){
var hash = window.location.hash;
var location= $("#faq").find("[href='" + hash + "']");
location.click();
smoothScroll(location);
});
</script>
</body>
</html>