-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (113 loc) · 5.22 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DevFest Berlin Landing Page</title>
<link rel="Shortcut Icon" type="image/ico" href="favicon.ico">
<!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones -->
<!--
<link rel="canonical" href="http://www.example.com/">
-->
<link href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="bower_components/material-design-lite/material.min.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body class="mdl-color--grey-100 mdl-color-text--grey-700 mdl-base">
<div class="mdl-layout mdl-js-layout">
<header class="mdl-layout__header mdl-layout__header--waterfall">
<div class="mdl-layout--large-screen-only mdl-layout__header-row">
<h1 class="mdl-layout-title">DevFest Berlin
<span> - A weekend of developer awesomeness, once a year.</span>
</h1>
</div>
</header>
<main class="mdl-layout__content">
<div class="page-content">
<section id="welcome" class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--8dp">
<div class="mdl-card mdl-cell mdl-cell--12-col">
<div class="mdl-card__title">
<h2 class="mdl-card__title-text">Welcome to DevFest Berlin</h2>
</div>
<div class="mdl-card__supporting-text">
A yearly community-driven developer event organized by the 3 GDGs in Berlin: GDG Berlin, GDG Berlin Android & GDG Berlin Golang
</div>
<div id="redirect_wrap" class="mdl-card__actions mdl-card--border">
<h5 id="redirect_text">...</h5>
<div id="redirect_progress" style="width: 100%" class="mdl-progress mdl-js-progress"></div>
<a id="redirect_cancel" class="mdl-button mdl-button--raised mdl-button--accent mdl-js-button mdl-js-ripple-effect">
Cancel countdown, I want to stay here!
</a>
</div>
</div>
</section>
<!--
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
<div class="mdl-card mdl-cell mdl-cell--12-col">
<h2 class="mdl-card__title-text">2012</h2>
</div>
<div class="mdl-card__supporting-text">
Our first edition, happened completely at c-base spacestation
</div>
<div class="fullsize mdl-card__actions mdl-card--border">
<a class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect">
Go to site <i class="material-icons">arrow_forward</i>
</a>
</div>
</section>
-->
</div>
</main>
<footer class="mdl-mega-footer">
<div class="mdl-mega-footer--middle-section">
<div class="mdl-mega-footer--drop-down-section">
<input class="mdl-mega-footer--heading-checkbox" type="checkbox" checked>
<h1 class="mdl-mega-footer--heading">GDG Berlin Android</h1>
<ul class="mdl-mega-footer--link-list">
<li>
<a href="www.meetup.com/GDG-Android-in-Berlin/">Meetup.com</a>
</li>
<li>
<a href="https://plus.google.com/102464661817600154044">Google+</a>
</li>
<li>
<a href="https://twitter.com/berlindroid">Twitter</a>
</li>
</ul>
</div>
<div class="mdl-mega-footer--drop-down-section">
<input class="mdl-mega-footer--heading-checkbox" type="checkbox" checked>
<h1 class="mdl-mega-footer--heading">GDG Berlin</h1>
<ul class="mdl-mega-footer--link-list">
<li>
<a href="http://www.meetup.com/gdgberlin/">Meetup.com</a>
</li>
<li>
<a href="https://plus.google.com/+GDG-Berlin">Google+</a>
</li>
<li>
<a href="https://twitter.com/gdgberlin">Twitter</a>
</li>
</ul>
</div>
<div class="mdl-mega-footer--drop-down-section">
<input class="mdl-mega-footer--heading-checkbox" type="checkbox" checked>
<h1 class="mdl-mega-footer--heading">GDG Berlin Golang</h1>
<ul class="mdl-mega-footer--link-list">
<li>
<a href="http://www.meetup.com/golang-users-berlin/">Meetup.com</a>
</li>
<li>
<a href="https://plus.google.com/114206505697282885347">Google+</a>
</li>
</ul>
</div>
</div>
</footer>
</div>
<script src="bower_components/material-design-lite/material.min.js"></script>
<script src="js/site.js"></script>
</body>
</html>