This repository has been archived by the owner on Sep 25, 2019. It is now read-only.
forked from GDGTC/gdgtc-site-polymer
-
Notifications
You must be signed in to change notification settings - Fork 12
/
home.html
71 lines (54 loc) · 2.01 KB
/
home.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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="components/webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="components/paper-checkbox/paper-checkbox.html">
<link rel="import" href="components/font-roboto/roboto.html">
<link rel="import" href="custom_components/organizer-list.html">
<link rel="import" href="custom_components/organizer-card.html">
<link rel="import" href="custom_components/footer.html">
<link rel="import" href="custom_components/app-globals.html">
<link rel="import" href="config.html">
<style shim-shadowdom>
body {
font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
margin: 0;
padding: 24px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout: none;
}
core-header-panel {
height: 100%;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
core-toolbar {
background: #03a9f4;
color: white;
}
organizer-card {
margin: 30px;
width: 290px;
}
</style>
</head>
<body unresolved>
<app-globals id="globals"></app-globals>
<h1>GDG Twin Cities</h1>
<p>Our big event that is coming on Feb 28th, is the Google Developers Group DevFest. We'd love to see you there. Find out more are <a href="http://devfest.mn" target="_top">devfest.mn</a></p>
<p>Our events are managed on Meetup.com <a class="btn btn-primary btn-large" href="http://meetup.com/gdg-tc" target="_top">sign up!</a></p>
<div class="container" horizontal layout wrap>
<h2 class="">Organizers</h2>
<organizer-list show="all"></organizer-list>
</div>
</div>
<page-footer></page-footer>
</body>
</html>