-
Notifications
You must be signed in to change notification settings - Fork 68
/
devs.html
72 lines (50 loc) · 2.8 KB
/
devs.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
---
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 == "stackoverflow" %}
<a href="{{ url.url }}"><img src="/assets/images/icons/profile-icons/stackoverflow-icon.svg" alt=""></a>
{% elsif url.name == "bsd.network" %}
<a href="{{ url.url }}"><img src="/assets/images/icons/profile-icons/mastodon-icon.svg" alt=""></a>
{% elsif url.name == "linkedin" %}
<a href="{{ url.url }}"><img src="/assets/images/icons/profile-icons/linkedin-icon.svg" alt=""></a>
{% elsif url.name == "github" %}
<a href="{{ url.url }}"><img src="/assets/images/icons/profile-icons/github-icon.svg" alt=""></a>
{% elsif url.name == "gitlab" %}
<a href="{{ url.url }}"><img src="/assets/images/icons/profile-icons/gitlab-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 identifies as a developer or is interested in becoming a developer in Chattanooga to join our community.
<a href="https://github.com/chadev/chadev.github.io">Submit a Pull Request</a> on GitHub to add yourself.
See our <a href="https://github.com/chadev/chadev.github.io/wiki/Adding-yourself-to-the-Devs-list">wiki page</a> for basic instructions.
We can help if you get stuck or need a hint. Find us on
<a href="http://chadev-slackin.herokuapp.com/">Slack</a> or <a href="mailto:[email protected]">shoot us an email</a>.</p>
</section>