This repository has been archived by the owner on Nov 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
oxford.html
203 lines (179 loc) · 6.78 KB
/
oxford.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no" />
<!-- favicon -->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<title>Node Girls | Oxford</title>
<!-- CSS -->
<link href="css/materialize.min.css" type="text/css" rel="stylesheet" media="screen,projection" />
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-106487866-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<nav class="white" role="navigation">
<div class="nav-wrapper container">
<ul class="hide-on-med-and-down nav-list nav-list--with-image">
<li class="nav-list__list-item">
<a href="/chapters">Chapters</a>
</li>
<li class="nav-list__list-item">
<a href="/events">Events</a>
</li>
<li class="nav-list__logo">
<a href="/">
<img alt="Node Girls Logo" src="images/ng-logo.svg">
</a>
</li>
<li class="nav-list__list-item">
<a href="/resources">Resources</a>
</li>
<li class="nav-list__list-item">
<a href="/about">About Us</a>
</li>
</ul>
<!--hamburger menu-->
<a class="nav-button" tabindex="0">☰</a>
<span class="nav-close" tabindex="0">☰</span>
<button class="nav-frame">
<!-- Side nav for mobile - menu links MUST BE REPEATED HERE,
hidden in non-mobile settings-->
<ul class="mobile-nav">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/chapters">Chapters</a>
</li>
<li>
<a href="/events">Upcoming Events</a>
</li>
<li>
<a href="/resources">Resources</a>
</li>
<li>
<a href="/about">About Us</a>
</li>
</ul>
</button>
<button class="nav-overflow"></button>
</div>
</nav>
<main>
<div class="section no-pad-bot">
<div class="container">
<div class="why-container center">
<h1 class="header center green-text">OXFORD</h1>
<hr class="why-text-container__divider" />
<div class="row center">
<p class="header col s12 light strapline">
Node Girls Oxford has been running since Autumn 2018.
</p>
</div>
<ul class="social-icons">
<li class="social-icons__icon">
<a target="_blank" class="black-text" href="https://twitter.com/nodegirlsoxford">
<i class="fa fa-twitter fa-3x"></i>
</a>
</li>
<li class="social-icons__icon">
<a target="_blank" class="black-text" href="https://github.com/node-girls/">
<i class="fa fa-github fa-3x"></i>
</a>
</li>
<li class="social-icons__icon">
<a class="black-text" href="mailto:oxford@nodegirls.com">
<i class="fa fa-envelope-o fa-3x"></i>
</a>
</li>
</ul>
</div>
<img class="why-image" src="images/chapters/oxford-profile.jpg" />
<!-- Upcoming Events Section -->
<h2 class="header center green-text">Upcoming Events</h2>
<div class="future-events-container">
<p class="flow-text no-events-text">
More events to be announced soon.
<br> Check back here or
<a target="_blank" href="https://www.twitter.com/nodegirlsoxford">on Twitter</a> for updates!
</p>
</div>
<!-- Past Events Section -->
<!-- <h3 class="header center green-text">Past events</h3>
<div class="past-events-container">
</div> -->
<div class="contact-chapter-container">
<h4 class="header center green-text">Contact Oxford</h4>
<ul class="social-icons vertical">
<li class="social-icons__icon">
<a target="_blank" class="black-text" href="https://twitter.com/nodegirlsoxford">
<i class="fa fa-twitter fa-3x"></i>
<p class="header col s12 light">
@nodegirlsoxford
</p>
</a>
</li>
<li class="social-icons__icon">
<a class="black-text" href="mailto:oxford@nodegirls.com">
<i class="fa fa-envelope-o fa-3x"></i>
<p class="header col s12 light">
oxford@nodegirls.com
</p>
</a>
</li>
</ul>
</div>
</div>
</div>
</main>
<footer class="page-footer green" id="footer">
<div class="container">
<div class="row">
<div class="col l6 s12 footer__contact">
<h2 class="white-text footer__contact-title">Contact Us</h2>
<p class="white-text">If you have any questions, would like to become a mentor, sponsor an event or want to be involved in some way,
drop us a line to
<a href="mailto:hello@nodegirls.com" class="footer__mailto">hello@nodegirls.com</a>.
</p>
</div>
<div class="col l6 s12">
<ul class="social-icons">
<li class="social-icons__icon">
<a target="_blank" class="white-text" href="https://twitter.com/nodegirls">
<i class="fa fa-twitter fa-3x"></i>
</a>
</li>
<li class="social-icons__icon">
<a target="_blank" class="white-text" href="https://github.com/node-girls/">
<i class="fa fa-github fa-3x"></i>
</a>
</li>
<li class="social-icons__icon">
<a class="white-text" href="mailto:hello@nodegirls.com">
<i class="fa fa-envelope-o fa-3x"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container white-text">
Made by Node Girls, with thanks to
<a target="_blank" class="grey-text text-lighten-3" href="http://materializecss.com">Materialize</a>
</div>
</div>
</footer>
</body>
</html>