-
Notifications
You must be signed in to change notification settings - Fork 3
/
page-credits.html
97 lines (90 loc) · 2.99 KB
/
page-credits.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
<polymer-element name="page-credits" attributes="hide">
<template>
<style>
:host {
display: block;
width: 100%;
}
a {
color: #f1c40f;
}
</style>
<div layout vertical center hidden?="{{hide == 'true'}}">
<h1>Credits</h1>
<p>
<h4>// Umbrella Icon</h4>
<a href="https://www.facebook.com/sunnyyuen" target="_blank">Sunny Yuen</a>
</p><p>
<h4>// Translation</h4>
<h5>French</h5>
<ul>
<li>Helen Tsui</li>
<li><a href="http://frenchhk.com" target="_blank">Nicolas Laignelet</a></li>
<li>Crystal Chan</li>
</ul>
<h5>Japanese</h5>
<ul>
<li>Amelia Tang</li>
<li><a href="https://www.facebook.com/chau.tung.1" target="_blank">Lau Chau Tung Aki</a></li>
<li><a href="https://www.facebook.com/hanako.miyamaru" target="_blank">Hanako Miyamaru</a></li>
</ul>
<h5>Danish</h5>
<ul>
<li>Peter Sønderby</li>
<li><a href="https://www.facebook.com/kavjoergensen" target="_blank">Kasper Jorgensen</a></li>
<li>Morten Risum Pedersen</li>
</ul>
<h5>Korean</h5>
<ul>
<li>Queenie Tam</li>
</ul>
<h5>German</h5>
<ul>
<li>Mirko Kobiela</li>
<li>Curio Man</li>
</ul>
</p><p>
<h4>// Tech Team</h4>
<ul>
<li><a href="https://www.facebook.com/david90" target="_blank">David</a></li>
<li><a href="https://www.facebook.com/silverchung" target="_blank">Chung</a></li>
<li>Sam Lam</li>
</ul>
</p><p>
<h4>// Publishing</h4>
<a href="https://www.facebook.com/elva.mo" target="_blank">Elva Mo</a>
</p><p>
<h4>// Design</h4>
David
</p><p>
<h4>// Others</h4>
<ul>
<li>Karlie Wong</li>
<li>Lam Ting Fai</li>
<li>Moses Ko</li>
<li><a href="https://www.facebook.com/wing.yan.1109" target="_blank">Wendy Law</a></li>
</ul>
</p><p>
<h4>// Github Project</h4>
<a href="https://github.com/david90/umbrella-kit" target="_blank">https://github.com/david90/umbrella-kit</a><br/>
* Submiting issues and pull requests are welcome.
</p><p>
<h4>// More links</h4>
<a href="http://occupier.hk/standbyyou" target="_blank">Add oil machine for OCLP</a>
<a href="http://today.code4.hk" target="_blank">Today @ Code4HK</a>
<a href="http://umbrellarevolution.happenings.io/" target="_blank"> UmbrellaRevolution @Happenings.io</a>
</p><p>
<h4>// Help to spread</h4>
Share on FB/ IG/ Twitter and hastag
<textarea rows="1" cols="50" onclick="this.focus();this.select()" readonly="readonly" style="resize: none;overflow:hidden;">#umbrellaStory #umbrellaRevolution #hk926 #oclp #umbrellaMovement
</textarea>
</p><p>
<h4>// Contribute</h4>
Contact us at <a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</template>
<script>
Polymer({});
</script>
</polymer-element>