-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (79 loc) · 4.86 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
84
85
86
87
88
89
90
<!doctype html>
<html ng-app="devfest" ng-controller="MainControl">
<head>
<title>DevFest Berlin - {{ getPageTitle() }}</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="icon" type="image/png" href="favicon.png"/>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,700italic,300,700' rel='stylesheet'
type='text/css'>
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/devfest_berlin.css" rel="stylesheet" media="screen">
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script>
<script src="js/devfest_berlin.js"></script>
<meta name="google-site-verification" content="-ArvK1Z6viSO7jd4DpG1KujHHXxSNSedS8lvtUGL7kE"/>
<!-- sharing -->
<meta property="og:title" content="DevFest Berlin - A weekend of awesome!"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="http://devfest-berlin.de"/>
<meta property="og:image" content="http://devfest-berlin.de/images/devfest-pacman-android-square.png"/>
<meta property="og:site_name" content="DevFest Berlin"/>
<meta property="og:description" content="GDG DevFests are large, community-run events that can offer speaker sessions across multiple product areas, all-day hack-a-thons, code labs, and more. And Berlin got it's own!"/>
</head>
<body>
<!-- NAV -->
<nav class="navbar navbar-inverse navbar-static-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="nav navbar-toggle" ng-click="isCollapse = !isCollapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" id="gdg_chapter_name" ng-href="#/{{year || default_year}}/about">{{site_name}}</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" collapse="isCollapse">
<ul class="nav navbar-nav">
<li ng-class="{ 'active' : activeTab=='about' }"><a ng-click="" ng-href="#/{{year || default_year}}/about">About</a></li>
<li ng-class="{ 'active' : activeTab=='agenda' }"><a ng-href="#/{{year || default_year}}/agenda">Agenda</a>
<li ng-class="{ 'active' : activeTab=='speakers' }"><a ng-href="#/{{year || default_year}}/speakers">Speakers</a>
</li>
<li ng-class="{ 'active' : activeTab=='news' }"><a ng-href="#/{{year || default_year}}/news">News</a></li>
<li ng-class="{ 'active' : activeTab=='photos' }"><a ng-href="#/{{year || default_year}}/photos">Photos</a>
</li>
<li ng-class="{ 'active' : activeTab=='team' }"><a ng-href="#/{{year || default_year}}/team">Team</a></li>
</ul>
<ul class="nav navbar-nav pull-right">
<li><a ng-href="{{ google_plus_link }}" target="_blank"><span class="glyphicon glyphicon-share-alt"></span>
Google+ Page</a></li>
<li><a ng-href="{{ google_plus_event_link }}" target="_blank"><span
class="glyphicon glyphicon-share-alt"></span> Google+ Event</a></li>
<li ng-class="{ 'active' : activeTab=='contact' }"><a ng-href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row" ng-view></div>
<hr>
<div class="footer">
<p>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="Creative Commons License"
style="border-width:0"
src="http://i.creativecommons.org/l/by-sa/3.0/80x15.png"/></a>
<span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">DevFest Berlin</span> is licensed under a
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons
Attribution-ShareAlike 3.0 Unported License</a>.
Copyright of the photos shown on this page are belonging to their respective owners.
</p>
</div>
</div>
</body>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js" defer="defer"></script>
</html>