This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteam.html
87 lines (80 loc) · 2.32 KB
/
team.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
title: Team
layout: default
members:
- name: Crafti
role: Maintainer
link: https://github.com/Craftplacer
avatar: https://www.libravatar.org/avatar/1abcda3eed224fdb139eb8a1cbbf5fe017522b8016b4ed5344f7a094de35ad4a?s=96
- name: Via
avatar: https://kitties.gay/images/pfpnew.jpg
link: https://kitties.gay/
role: UI/UX
notable:
- name: Octus
avatar: https://media.mstdn.social/accounts/avatars/000/062/077/original/199b3ced9e1c0d5e.png
description: Logo Design
link: https://mstdn.social/@odyssey98
- name: Erin
avatar: https://avatars.githubusercontent.com/u/542684
description: Contributions to Glitch Social support
link: https://github.com/erincandescent
- name: Ame
avatar: https://avatars.githubusercontent.com/u/85121274
description: Feedback backend and several other contributions
link: https://github.com/ajiiisai
---
<h1>Team</h1>
<div class="grid">
{% for member in page.members %}
<div class="h-card">
<img class="u-photo" src="{{member.avatar}}" alt="">
{% if member.link %}
<a class="p-name u-url" href="{{member.link}}">{{member.name}}</a>
{% else %}
<span class="p-name">{{member.name}}</span>
{% endif %}
<span class="p-job-title">{{member.role}}</span>
</div>
{% endfor %}
</div>
<h2>Notable mentions</h2>
<div class="grid">
{% for member in page.notable %}
<div class="h-card">
<img class="u-photo" src="{{member.avatar}}" alt="">
{% if member.link %}
<a class="p-name u-url" href="{{member.link}}">{{member.name}}</a>
{% else %}
<span class="p-name">{{member.name}}</span>
{% endif %}
{% if member.description %}
<span>{{member.description}}</span>
{% endif %}
</div>
{% endfor %}
</div>
<hr>
<p>We also thank <a href="https://github.com/Kaiteki-Fedi/Kaiteki/graphs/contributors">everyone else contributing</a> to the project.</p>
<style>
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 16px;
text-align:center;
}
.h-card {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}
.h-card .p-name {
font-weight: bold;
}
.h-card img {
width: 96px;
height: 96px;
border-radius: 100%;
}
</style>