-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex-v1.html
114 lines (88 loc) · 4.39 KB
/
index-v1.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
<!doctype html>
<!--
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE
The complete set of authors may be found at http://polymer.github.io/AUTHORS
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS
-->
<html>
<head>
<title>GDG Twin Cities</title>
<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="icon" type="image/png" href="favicon.png">
<!-- <link rel="shortcut icon" href="http://www.polymer-project.org/images/logos/p-logo-16.png"> -->
<link rel="import" href="custom_components/scaffold.html">
<link rel="import" href="components/font-roboto/roboto.html">
<link rel="import" href="components/core-item/core-item.html">
<link rel="import" href="components/core-menu/core-submenu.html">
<link rel="import" href="components/paper-icon-button/paper-icon-button.html">
<link rel="import" href="components/paper-fab/paper-fab.html">
<link rel="import" href="components/core-icons/core-icons.html">
<link rel="import" href="components/core-icons/social-icons.html">
<style>
body {
font-family: RobotoDraft, sans-serif;
color: #333;
margin: 0;
-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;
}
#expIcon {
position: absolute;
bottom: 0px;
right: 0px;
}
</style>
</head>
<body unresolved>
<sampler-scaffold label="GDG Twin Cities" fit>
<paper-icon-button class="menuButton" icon="menu" ></paper-icon-button>
<core-item label="Home" tag="home" url="home.html"><paper-ripple fit><a href="#home"></a></paper-ripple></core-item>
<core-item label="About" tag="about" url="about.html"><paper-ripple fit></paper-ripple></core-item>
<core-item label="Past Events" tag="past" url="past.html"><paper-ripple fit></paper-ripple></core-item>
<core-item label="Conduct" tag="conduct" url="conduct.html"><paper-ripple fit></paper-ripple></core-item>
<core-item label="Contact" tag="contact" url="contact.html"><paper-ripple fit></paper-ripple></core-item>
<core-item label="Sponsor" tag="sponsor" url="sponsor.html"><paper-ripple fit></paper-ripple></core-item>
</sampler-scaffold>
<div>
<img id="expIcon" src="./images/polymentTRANS.png" onclick="window.open('http://itshackademic.com/codelabs/', '_blank');">
</div>
<script>
// Hello Developers! See console.
console && console.log(
"%cWelcome to %cG%cD%cG %cT%cw%ci%cn %cC%ci%ct%ci%ce%cs%c!\n%cThis website code is at https://github.com/GDGTC/gdgtc-site-polymer/",
"font-size:1.5em;color:#4558c9;",
"font-size:1.5em;color:#0266C8;",
"font-size:1.5em;color:#F90101;",
"font-size:1.5em;color:#F2B50F;",
"font-size:1.5em;color:#4558c9;",
"font-size:1.5em;color:#00933B;",
"font-size:1.5em;color:#0266C8;",
"font-size:1.5em;color:#F90101;",
"font-size:1.5em;color:#F2B50F;",
"font-size:1.5em;color:#4558c9;",
"font-size:1.5em;color:#00933B;",
"font-size:1.5em;color:#0266C8;",
"font-size:1.5em;color:#F90101;",
"font-size:1.5em;color:#F2B50F;",
"font-size:1.5em;color:#00933B;",
"font-size:1em;color:#006600;");
// Analytics for pp.org
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-46026381-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>