forked from luanti-org/luanti-org.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits.html
86 lines (75 loc) · 2.37 KB
/
credits.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
---
title: Credits
layout: default
redirect_from:
- /credits.html
- /contributors/
---
<section class="section">
<div class="container">
<div class="columns is-centered">
<div class="column is-10 is-9-desktop is-8-widescreen is-7-fullhd content">
<h1>Credits</h1>
<h2>Core Team</h2>
<p>
The core team consists of contributors with special privileges and
responsibilities.
</p>
<p>
Core developers decide what can be added to Minetest by voting for
and against pull requests. They also have commit access to the Minetest
team's repositories on GitHub.
<a href="https://dev.minetest.net/Organisation">Learn more.</a>
</p>
<h3>Active Core Developers</h3>
<ul>
{% for x in site.data.credits.active_core_devs %}
<li>{{ x }}</li>
{% endfor %}
</ul>
<h3>Active Core Team Members</h3>
<ul>
{% for x in site.data.credits.active_core_team %}
<li>{{ x }}</li>
{% endfor %}
</ul>
<h3>Previous Core Developers</h3>
<ul>
{% for x in site.data.credits.previous_core_devs %}
<li>{{ x }}</li>
{% endfor %}
</ul>
<hr>
<h2>Contributors</h2>
<p>
Also see the complete lists of
<a href="https://github.com/minetest/minetest/graphs/contributors">Minetest</a> and
<a href="https://github.com/minetest/minetest_game/graphs/contributors">Minetest Game</a>
contributors.
</p>
<h3>Active</h3>
<ul>
{% for x in site.data.credits.active_contributors %}
<li>{{ x }}</li>
{% endfor %}
</ul>
<h3>Previous</h3>
<ul>
{% for x in site.data.credits.previous_contributors %}
<li>{{ x }}</li>
{% endfor %}
</ul>
<p class="has-text-weight-bold">
More information can be found at
{% comment %}
OpenHub seems to be flaky, so ignore it in HTMLProofer link checking.
{% endcomment %}
<a href="https://www.openhub.net/p/minetest-c55" data-proofer-ignore>Open Hub</a>.
</p>
<p>
Want to <a href="{{ '/get-involved/#contribute' | relative_url }}">contribute</a>?
</p>
</div>
</div>
</div>
</section>