-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.html
76 lines (69 loc) · 2.44 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
<!DOCTYPE html>
<html>
<head>
<title>GDG New Delhi</title>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="import" href="/bower_components/app-router/app-router.html">
<link rel="import" href="/bower_components/font-roboto/roboto.html">
<style type="text/css">
html,
body {
height: 100%;
}
body {
font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
font-size: 14px;
margin: 0;
color: #333;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-touch-callout: none;
}
a {
text-decoration: none;
color: #f1f1f1;
}
h1,
h2,
h3,
h4,
h5 {
font-weight: 300;
letter-spacing: -.01em;
line-height: 48px;
margin: 0;
color: #444;
}
</style>
<!-- Google Analytics Code -->
<script>
(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-34512503-2', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<app-router>
<app-route path="/" import="/pages/gdgnd/gdgnd-splash-screen.html"></app-route>
<app-route path="/home" import="/pages/gdgnd/gdgnd-home-page.html"></app-route>
<app-route path="/about" import="/pages/gdgnd/gdgnd-about-page.html"></app-route>
<app-route path="/events" import="/pages/gdgnd/gdgnd-events-page.html"></app-route>
<app-route path="/activities" import="/pages/gdgnd/gdgnd-activities-page.html"></app-route>
<app-route path="/social" import="/pages/gdgnd/gdgnd-social-page.html"></app-route>
<app-route path="/organizers" import="/pages/gdgnd/gdgnd-organizers-page.html"></app-route>
<app-route path="/involve" import="/pages/gdgnd/gdgnd-involve-page.html"></app-route>
<app-route path="*" redirect="/pages/gdgnd/gdgnd-home-page.html"></app-route>
</app-router>
</body>
</html>