-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
181 lines (143 loc) · 4.99 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!doctype html>
<html>
<head>
<title>GDG Buea</title>
<meta name="viewport"
content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<script src="components/webcomponentsjs/webcomponents.js">
</script>
<link rel="import" href="components/font-roboto/roboto.html">
<link rel="import" href="components/core-header-panel/core-header-panel.html">
<link rel="import" href="components/core-toolbar/core-toolbar.html">
<link rel="import" href="components/paper-tabs/paper-tabs.html">
<!-- -->
<link rel="import" href="components/custom-components/gdgbuea-jumbotron/gdgbuea-jumbotron.html" />
<link rel="import" href="components/custom-components/gdgbuea-calendar/gdgbuea-calendar.html" />
<link rel="import" href="components/custom-components/gdgbuea-partner/gdgbuea-partner.html" />
<link rel="import" href="components/custom-components/gdgbuea-organizer/gdgbuea-organizer.html" />
<style>
html,body {
height: 100%;
margin: 0;
background-color: #EEEEEE;
font-family: 'RobotoDraft', sans-serif;
}
core-header-panel{
height: 100%;
overflow: auto;
-webkit-overfolow-scrolling:touch;
}
core-toolbar{
background: #E84A1C;
color: #fff;
padding-left: 50px;
}
#tabs{
width: 100%;
margin: 0;
-webkit-user-select: none;
-moz-user-select:none;
-ms-user-select:none;
text-transform: uppercase;
}
paper-tab a{
text-decoration: none;
color: #fff;
}
.container {
width: 80%;
margin: 50px auto;
}
@media (min-width: 481px) {
#tabs {
min-width: 200px;
}
#contenue {
width: 100%;
}
}
/* #contenue div{
width: 75%;
height: 768px;
background-color: #aba;
text-align: center;
margin: 50px auto;
padding-top: 250px;
}*/
</style>
</head>
<body unresolved>
<core-header-panel>
<core-toolbar>
<paper-tabs id="tabs" selected="0" >
<paper-tab><a href="#image" horizontal center-center layout><img src="images/logosmall.png"></a></paper-tab>
<paper-tab><a href="#home" horizontal center-center layout>Home</a></paper-tab>
<paper-tab><a href="#about" horizontal center-center layout>About</a></paper-tab>
<paper-tab><a href="#events" horizontal center-center layout>Events</a></paper-tab>
<paper-tab><a href="#join" horizontal center-center layout>Join</a></paper-tab>
<paper-tab><a href="#contact us" horizontal center-center layout>Contact Us</a></paper-tab>
<paper-tab><a href="#partners" horizontal center-center layout>Partners</a></paper-tab>
<paper-tab><a href="#resources" horizontal center-center layout>resources</a></paper-tab>
</paper-tabs>
</core-toolbar>
<!-- main page -->
<!-- this the post card code here -->
<div id="contenue" layout vertical center>
<!-- <post-list show="all"></post-list>
<post-comment><input></input> </post-comment> -->
<div id="home">
<!-- Jumbo ======================-->
<H1>YES THIS YOUR ITEM I</H1>
<!-- Jumbo ======================-->
</div>
<div id="about">
<gdgbuea-organizer link="https://plus.google.com/108196826772057594196/about
" name="Isaac Kamga" role="Community Manager" image="images/isaac_kamga.jpg"></gdgbuea-organizer>
<gdgbuea-organizer link="https://plus.google.com/110533699479797828285/about
" name="Otto Akama" role="Assistant Manager" image="images/paul.jpg"></gdgbuea-organizer>
<gdgbuea-organizer link="https://plus.google.com/u/0/107067841106289821727/about
" name="Ngole Brinsley" role="Marketing Manager" image="images/ngole_brinsley.jpg"></gdgbuea-organizer>
<gdgbuea-organizer link="https://plus.google.com/102425594519879388722/about
" name="Chick Delveri" role="Technical Manager" image="images/chick.jpg"></gdgbuea-organizer>
</div>
<div id="events">
<gdgbuea-calendar>
</gdgbuea-calendar>
</div>
<div id="join">
<H1>Join Us</H1>
<ul>
<li>Click the "I'm a member" button on the <a href="https://developers.google.com/groups/chapter/100289274059280359416/">GDG Directory </a> </li>
<li>"Follow" us on <a href="http://plus.google.com/100289274059280359416">Google+</a></li>
<li>"Like" us on <a href="https://www.facebook.com/gdgbuea">facebook </a></li>
<li>Join our <a href="https://groups.google.com/forum/#!forum/gdgbuea">mailing list </a></li>
<li>Chat with us on IRC (#ublab on freenode server)</li>
</ul>
</div>
<div id="contact us">
<H1>Contact Us</H1>
<ul>
<li> Call +237674106297 </li>
<li>Write info AT gdgbuea DOT org</li>
</ul>
</div>
<div id="partners">
<H1>YES THIS YOUR ITEM 6</H1>
</div>
<div id="resources">
<H1>YES THIS YOUR ITEM 7</H1>
</div>
</div>
<div class="container" layout vertical center>
</div>
</core-header-panel>
<!-- this is to switch from one tab to another -->
<script>
var tabs = document.querySelector('paper-tabs');
var list = document.querySelector('post-list');
tabs.addEventListener('core-select', function() {
list.show = tabs.selected;
});
</script>
</body>
</html>