-
Notifications
You must be signed in to change notification settings - Fork 68
/
groups.html
59 lines (42 loc) · 1.73 KB
/
groups.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
---
layout: default
title: Groups
---
{% for page in site.data.groups %}
<section class="dev-profile">
{% if page.urls %}
{% for url in page.urls %}
{% if url.name == "website" %}
<a class="avatar" href="{{ url.url }}">
{% endif %}
{% endfor %}
{% else %}
<a class="avatar" href="{{ page.website }}">
{% endif %}
<img src="{% include gravatar/image.html size=site.gravatar_sizes.groups 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="{{ site.url }}/assets/images/icons/profile-icons/link-icon.svg" alt=""></a>
{% elsif url.name == "twitter" %}
<a href="{{ url.url }}"><img src="{{ site.url }}/assets/images/icons/profile-icons/twitter-icon.svg" alt=""></a>
{% elsif url.name != "meetup" %}
<a href="{{ url.url }}">{{ url.name }}</a>
{% endif %}
{% endfor %}
{% if page.code-of-conduct %}
<a href="{{ page.code-of-conduct }}"><img src="/assets/images/icons/profile-icons/document.svg" alt=""></a>
{% endif %}
</div>
{% endif %}
</section>
{% endfor %}
<section class="callout">
<h2>Get listed!</h2>
<p>Want to have your development group listed here? Make sure you have a publically available
<a href="/coc">Code of Conduct</a> (Chadev's is based off <a href="http://geekfeminism.wikia.com/wiki/Conference_anti-harassment/Policy">this guideline</a>),
and <a href="https://github.com/chadev/chadev.github.io">submit a pull request</a> on GitHub.</p>
</section>