-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (53 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8' />
<title>❤ Community</title>
<style>
html { opacity: 0; transition: opacity 1s ease-in; }
html.ready { opacity: 1; }
</style>
</head>
<body>
<div class="content">
<header id="orgHeader">
<h1>{{ name }} <span id="community"> ❤ Community</span></h1>
<h3>{{ location }}</h3>
</header>
<div id="orgDescription">
<h2>{{ description }}</h2>
</div>
<div id="orgOwners">
<h4>The core team</h4>
<div id="ownersAvatars" data-template="coreMembers">
<a href="https://github.com/{{github}}">
<img class="avatar" src="//gravatar.com/avatar/{{gravatar}}?s=200">
</a>
</div>
</div>
<div id="orgMembers">
<h4>Our community</h4>
<h5>Want to be on this list? <a href="https://github.com/">Submit a pull request!</a></h5>
<div data-template="communityMembers">
<div class="member">
<a href="https://github.com/{{github}}">
<img class="avatar" src="//gravatar.com/avatar/{{gravatar}}?s=200">
<p class="name">{{name}}</p>
<p class="skills">{{role}}</p>
</a>
</div>
</div>
<footer>
<h5>
This site displays the members of a creative community by using
<a href="https://github.com/">GitHub</a>.
Find out how you can quickly
<a href="https://github.com/ghus/ghus.github.io">create a site for your own organisation</a>
and host it for free with <a href="http://pages.github.com/">GitHub Pages</a>.
</h5>
</footer>
</div>
<script src="http://ghus.github.io/assets/ghus.js"></script>
<script src="config.js"></script>
</body>
</html>