-
Notifications
You must be signed in to change notification settings - Fork 17
/
event-footer.html
38 lines (37 loc) · 1.47 KB
/
event-footer.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
<link rel="import" href="bower_components/polymer/polymer.html">
<polymer-element name="event-footer" noscript>
<template>
<style>
#follow {
margin-top: 20px;
}
#follow a {
padding: 10px;
color: #212121;
}
#follow a img {
vertical-align: middle;
width: 24px;
height: 24px;
}
#follow span {
font-size: 90%;
vertical-align: middle;
display: inline-block;
}
footer {
font-size: 12px;
color: #777;
}
</style>
<div id="follow" layout horizontal center-justified wrap>
<a href="https://plus.google.com/+GdgbeijingOrg/posts"><img src="images/icons/gplus.png"><span> Google+</span></a>
<a href="https://groups.google.com/forum/?fromgroups#!forum/beijing-gtug"><img src="images/icons/groups.png"><span> 邮件列表</span></a>
<a href="http://www.chinagdg.com/forum-2-1.html"><img src="images/icons/discuz.jpg"><span> 国内论坛</span></a>
<a href="images/img/wechat_qrcode.jpg"><img src="images/icons/weixin.png"><span> GDG_Beijing</span></a>
<a href="http://weibo.com/gtug"><img src="images/icons/weibo.png"><span> @北京GDG</span></a>
<a href="https://github.com/gdgbeijing"><img src="images/icons/github.png"><span> /gdgbeijing</span></a>
</div>
<footer layout horizontal center-justified>© 2014 北京GDG</footer>
</template>
</polymer-element>