forked from jgthms/bulma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
backers.html
71 lines (62 loc) · 1.31 KB
/
backers.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
---
title: Backers via Patreon
layout: more
route: backers
breadcrumb:
- home
- more
- patreon-backers
---
{% capture table_head %}
<thead>
<tr>
<th>Name</th>
<th>Twitter</th>
<th>Website</th>
</tr>
</thead>
{% endcapture %}
<h2 class="title is-5">
Documentation sponsors via Patreon ($500+)
</h2>
<table class="table is-bordered">
{{ table_head }}
<tbody>
{% for backer in site.data.backers["500"] reversed %}
{% include elements/patreon-item.html %}
{% endfor %}
</tbody>
</table>
<h2 class="title is-5">
Homepage sponsors via Patreon ($100+)
</h2>
<table class="table is-bordered">
{{ table_head }}
<tbody>
{% for backer in site.data.backers["100"] reversed %}
{% include elements/patreon-item.html %}
{% endfor %}
</tbody>
</table>
<h2 class="title is-5">
Generous backers via Patreon ($30+)
</h2>
<table class="table is-bordered">
{{ table_head }}
<tbody>
{% for backer in site.data.backers["30"] reversed %}
{% include elements/patreon-item.html %}
{% endfor %}
</tbody>
</table>
<h2 class="title is-5">
Backers via Patreon ($10+)
</h2>
<table class="table is-bordered">
{{ table_head }}
<tbody>
{% for backer in site.data.backers["10"] reversed %}
{% include elements/patreon-item.html %}
{% endfor %}
</tbody>
</table>