-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcontact.html
37 lines (32 loc) · 993 Bytes
/
contact.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
<!doctype html>
<html>
<head>
<title>GDG TC Contact</title>
<script src="components/webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="components/font-roboto/roboto.html">
<link rel="import" href="custom_components/organizer-list.html">
<link rel="import" href="footer.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;
}
</style>
</head>
<body unresolved>
<article class="show-permalinks">
<div class="container" horizontal layout wrap>
<h2 class="">Organizers</h2>
<organizer-list show="all"></organizer-list>
</div>
</article>
<page-footer></page-footer>
</body>
</html>