-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcommunity.html
More file actions
106 lines (97 loc) · 4.1 KB
/
Copy pathcommunity.html
File metadata and controls
106 lines (97 loc) · 4.1 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
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
98
99
100
101
102
103
104
105
106
---
layout: default
title: Community
permalink: /community/
needs_filter: true
description: >-
The people building Ethiopian language technology, students, linguists,
researchers and engineers across Ethiopia and the diaspora.
---
{%- comment -%}
Ordered by the explicit `order:` key: the roster carried over from the
previous site keeps its sequence, everyone imported from the Hugging Face
organisation follows, and anyone who joins later lands at the end.
{%- endcomment -%}
{%- assign members = site.members | sort: "order" -%}
{%- assign active = members | where_exp: "m", "m.alumni != true" -%}
{%- assign alumni = members | where_exp: "m", "m.alumni" -%}
<div class="page-head">
<div class="wrap wrap--wide">
<p class="eyebrow">Community</p>
<h1 class="page-head__title">{{ members | size }} community members</h1>
<p class="lede">
EthioNLP has no membership fee and no application form. Researchers,
students and practitioners working on Ethiopian language technology can be
listed here.
</p>
<div class="row" style="margin-top: var(--sp-5)">
<a class="btn" href="{{ '/join/' | relative_url }}">Add yourself</a>
<a class="btn btn--ghost" href="{{ site.social.linkedin }}" rel="noopener">LinkedIn group</a>
</div>
</div>
</div>
<div data-filter-root>
<div class="filterbar">
<div class="wrap wrap--wide filterbar__inner">
<div class="search">
<span class="search__icon">{% include icon.html name="search" %}</span>
<input type="search" data-filter-search placeholder="Search by name, affiliation or topic"
aria-label="Search members">
<button class="search__clear" type="button" data-filter-clear aria-label="Clear search">
{% include icon.html name="close" %}
</button>
</div>
<div class="facet-group">
<span class="facet-group__label">Focus</span>
<div class="facets">
{%- for area in site.data.focus_areas -%}
{%- assign n = 0 -%}
{%- for m in members -%}{%- include focus-of.html m=m -%}{%- if focus contains area.key %}{% assign n = n | plus: 1 %}{% endif -%}{%- endfor -%}
{%- if n > 0 %}
<button class="facet" type="button" data-facet="focus" data-value="{{ area.key }}" aria-pressed="false">
{{ area.title }}<span class="facet__count">{{ n }}</span>
</button>
{%- endif -%}
{%- endfor -%}
</div>
</div>
<span class="filter-status" data-filter-count data-noun="members">{{ members | size }} members</span>
</div>
</div>
<div class="band band--flush">
<div class="wrap wrap--wide">
<div class="grid grid--tight" style="grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr))">
{%- for m in active %}{% include member-card.html m=m %}{% endfor %}
</div>
<div class="empty" data-filter-empty hidden style="margin-top: var(--sp-6)">
<p>No members match those filters.</p>
<p><a href="{{ '/join/' | relative_url }}">Add yourself or someone you know →</a></p>
</div>
{%- if alumni.size > 0 %}
<h2 style="margin-top: var(--sp-8)">Alumni</h2>
<div class="grid grid--tight" style="grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr))">
{%- for m in alumni %}{% include member-card.html m=m %}{% endfor %}
</div>
{%- endif %}
</div>
</div>
</div>
<section class="band band--alt">
<div class="wrap wrap--wide">
<div class="section-head">
<p class="eyebrow">Listing</p>
<h2>Being listed</h2>
<p class="lede">
Send us a GitHub, Hugging Face, ORCID or Google Scholar URL and the rest
is generated: the profile page, the publication list, the models and
the repositories.
</p>
</div>
<div class="row">
<a class="btn" href="{{ '/join/' | relative_url }}">How it works</a>
<a class="btn btn--ghost" href="https://github.com/{{ site.repository }}/issues/new?template=join-community.yml" rel="noopener">
{% include icon.html name="github" %} Open the join form
</a>
</div>
</div>
</section>