-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (46 loc) · 2.78 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
<!doctype html>
<html ng-app="gdgBoomerang">
<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 href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,700italic,300,700' rel='stylesheet' type='text/css'>
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
<link href="css/gdg.css" rel="stylesheet" media="screen">
<script src="http://code.angularjs.org/1.0.8/angular.min.js"></script>
<script src="http://code.angularjs.org/1.0.8/angular-sanitize.min.js"></script>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<script src="lib/angular.ui.min.js"></script>
<script src="js/boomerang.js"></script>
<script src="js/config.js"></script>
<link rel="icon" sizes="16x16 32x32" href="/favicon.ico">
</head>
<body ng-controller="MainControl">
<a href="https://plus.google.com/111917982940065392922" rel="publisher">Google+</a>
<!-- NAV -->
<div class="navbar navbar-static-top navbar-inverse">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" ng-click="isNavCollapsed = !isNavCollapsed">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" id="gdg_chapter_name">{{ chapter_name }}</a>
<div class="nav-collapse" collapse="isNavCollapsed" ng-click="isNavCollapsed = true">
<ul class="nav">
<li ng-class="{ 'active' : activeTab=='about' }"><a href="#about">About</a></li>
<li ng-class="{ 'active' : activeTab=='news' }"><a href="#news">News</a></li>
<li ng-class="{ 'active' : activeTab=='events' }"><a href="#events">Events</a></li>
<!--<li ng-class="{ 'active' : activeTab=='photos' }"><a href="#photos">Photos</a></li>-->
<li><a ng-href="{{ google_plus_link }}" rel="publisher" target="_blank">Google+</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row" ng-view></div>
</div>
</body>
</html>