-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.html
83 lines (83 loc) · 4.28 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Google Developer Group</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,700,300,600,800' rel='stylesheet' type='text/css'/>
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen"/>
<link href="css/gdg.css" rel="stylesheet" media="screen"/>
<!--<link href="css/bootstrap-responsive.min.css" rel="stylesheet" media="screen">-->
</head>
<body>
<a href="https://github.com/joshuawoodward/gdg-bootstrap" target="_blank" ><img id="gdg_ribbon" src="img/gdg-ribbon.png" alt="GDG Bootstrap" /></a>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#about"></a>
<ul class="nav">
<li id="about_nav" class="active"><a href="#about">About</a></li>
<li id="news_nav"><a href="#news">News</a></li>
<li id="events_nav"><a href="#events">Events</a></li>
<li id="photos_nav"><a href="#photos">Photos</a></li>
<li id="googleplus"><a href="#">Google+</a></li>
</ul>
<button type="button" id="join_chapter" class="btn btn-primary pull-right">Join Group</button>
</div>
</div>
</div>
<div class="container">
<!--About Section-->
<div class="panel" id="about_sec">
<p> </p>
<p> </p>
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
GDG Bootstrap is on <a href="https://github.com/joshuawoodward/gdg-bootstrap/">GitHub</a>, and it is open sourced. Learn how to create a site for your GDG by changing only 3 lines of code.
</div>
<div class="hero-unit" id="home">
<h1>Hacka501c3.org</h1>
<p>GDG Fresno and the community are teaming up to hack for non profits.</p>
<p>
<a class="btn btn-primary btn-large" href="http://hacka501c3.org" target="_blank">Learn more</a>
</p>
</div>
<p id="about"> </p>
<div></div>
</div>
<!--News Section-->
<div class="panel" id="news_sec">
<p> </p><p> </p>
<p id="news"> </p>
<div>
<ul id="news-feed"></ul>
</div>
</div>
<!--Event Section-->
<div class="panel" id="events_sec">
<p id="events"> </p>
<p id="upcoming_events"> </p>
<h3>Upcoming Events</h3>
<div></div>
<p id="past_events"> </p>
<h3>Past Events</h3>
<div></div>
</div>
<!--Photo Section-->
<div class="panel" id="photos_sec">
<p> </p><p> </p>
<p id="photos"> </p>
<div>
<ul class="thumbnails" id="photo_container">
</ul>
</div>
</div>
</div>
<script src="https://apis.google.com/js/plusone.js" parsetags="explicit"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/dateFormat.js"></script>
<script src="js/gdg.js"></script>
</body>
</html>