forked from cavewoman/codexx.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevs.html
More file actions
54 lines (37 loc) · 1.68 KB
/
Copy pathdevs.html
File metadata and controls
54 lines (37 loc) · 1.68 KB
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
---
layout: default
title: Devs
---
{% assign sorted_devs = site.devs | sort:"name" %}
{% for page in sorted_devs %}
<section class="dev-profile">
<a class="avatar" href="http://github.com/{{ page.github }}">
<img src="{% include gravatar/image.html size=site.gravatar_sizes.devs id=page.gravatar-id %}" class="profile-gravatar">
<h2>{{ page.name }}</h2>
</a>
{% if page.urls %}
<div class="profile-url">
{% for url in page.urls %}
{% if url.name == "website" %}
<a href="{{ url.url }}"><img src="/assets/images/icons/profile-icons/link-icon.svg" alt=""></a>
{% elsif url.name == "behance" %}
<a href="{{ url.url }}"><img src="/assets/images/icons/profile-icons/behance-icon.svg" alt=""></a>
{% elsif url.name == "twitter" %}
<a href="{{ url.url }}"><img src="/assets/images/icons/profile-icons/twitter-icon.svg" alt=""></a>
{% elsif url.name == "google+" %}
<a href="{{ url.url }}"><img src="/assets/images/icons/profile-icons/google-plus-icon.svg" alt=""></a>
{% elsif url.name == "facebook" %}
<a href="{{ url.url }}"><img src="/assets/images/icons/profile-icons/facebook-icon.svg" alt=""></a>
{% elsif url.name %}
<a href="{{ url.url }}">{{ url.name }}</a>
{% endif %}
{% endfor %}
</div>
{% endif %}
</section>
{% endfor %}
<section class="callout">
<h2>Join the group!</h2>
<p>We invite anyone who is interested in becoming a member of CodeXX to join our community.
<a href="https://github.com/cavewoman/codexx.github.io">Submit a Pull Request</a> on GitHub to add yourself.
</section>