-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (85 loc) · 3.62 KB
/
index.html
File metadata and controls
109 lines (85 loc) · 3.62 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
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
<!DOCTYPE html>
<html>
<head>
<title>Local Variables | Home</title>
<!--Foundation CSS -->
<link href="css/normalize.css" type="text/css" rel="stylesheet"></link>
<link href="css/foundation.css" type="text/css" rel="stylesheet"></link>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
</head>
<body>
<div class="row">
<div class="large-3 columns">
<div style="padding:10px 0 0 0"><a href="index.html"><img src="img/local_variables_logo.png"/></a></div>
</div>
<div id=navBar class="large-9 columns">
<ul class="right button-group">
<li><a href="about.html" class="button">About Us</a></li>
<li><a href="events.html" class="button">Events</a></li>
<li><a href="ourSponsors.html" class="button">Our Sponsors</a></li>
<li><a href="blog.html" class="button">Blog</a></li>
<li><a href="contact.html" class="button">Contact</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div id="slider">
<img src="img/localvariables_jumbo1.png" />
<!--<img src="http://placehold.it/1000x400&text=[ img 1 ]"/>-->
</div>
<hr/>
</div>
</div>
<div class="row">
<div class="large-4 columns">
<img src="img/iusb.jpg"/>
<h4>Events</h4>
<p>Every month we have speakers from all interests in the development community give talks on topics ranging from frontend/backend web frameworks to compilers. Find out more about our <a href="events.html">upcoming events</a>.</p>
</div>
<div class="large-4 columns">
<img src="img/lv_meetup.jpeg"/>
<h4>About Us</h4>
<p>Local Variables is a non-profit organization looking to educate the community in aspects of software and web development technologies through personal and professional experiences. Learn <a href="about.html">more</a>.</p>
</div>
<div class="large-4 columns">
<img src="img/microphone-759587_640.jpg"/>
<h4>Take Action</h4>
<p>Have something interesting you would like to speak about? We are always looking for those who want to share their knowledge and experiences within the development community.</p>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div class="panel">
<h4>Reach out!</h4>
<div class="row">
<div class="large-9 columns">
<p>Interested in giving a talk? Have a topic you would like to see at a future event? Let us know. </p>
</div>
<div class="large-3 columns">
<a href="contact.html" class="radius button right">Contact Us</a>
</div>
</div>
</div>
</div>
</div>
<footer class="row">
<div class="large-12 columns">
<hr/>
<div class="row">
<div class="large-6 columns">
<p>© Copyright 2016 Local Variables</p>
</div>
<div class="large-6 columns">
<ul class="inline-list right">
<li><a href="http://www.meetup.com/localvariables/" target="_blank"><img class="footer-logos" src="img/meetupLogo.jpeg"></a></li>
<li><a href="https://www.facebook.com/LocalVariables" target="_blank"><img class="footer-logos" src="img/FB-f-Logo__blue_50.png"></a></li>
<li><a href="https://twitter.com/localvariables" target="_blank"><img class="footer-logos" src="img/Tlogo.png"></a></li>
<li><a href="https://github.com/LocalVariables" target="_blank"><img class="footer-logos" src="img/GitHubLogo.png"></a></li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>