bulma/docs/backers.html

81 lines
1.8 KiB
HTML
Raw Normal View History

2017-11-15 13:01:33 +00:00
---
2020-01-20 07:49:27 +00:00
fulltitle: 'Backers via Patreon and GitHub'
title: 'Backers via <a href="https://www.patreon.com/jgthms" target="_blank">Patreon</a> and <a href="https://github.com/sponsors/jgthms" target="_blank">GitHub</a>'
2018-04-10 17:50:19 +00:00
layout: more
2017-11-15 13:01:33 +00:00
route: backers
2018-04-10 17:50:19 +00:00
breadcrumb:
- home
- patreon-backers
2017-11-15 13:01:33 +00:00
---
2018-10-09 11:15:59 +00:00
{% capture table_head %}
<thead>
<tr>
<th>Name</th>
<th>Twitter</th>
<th>Website</th>
</tr>
</thead>
{% endcapture %}
2018-04-10 17:50:19 +00:00
<h2 class="title is-5">
2020-01-20 07:49:27 +00:00
Generous backers ($30+)
2018-05-03 00:39:33 +00:00
</h2>
2018-10-09 11:15:59 +00:00
<table class="table is-bordered">
{{ table_head }}
<tbody>
2020-01-20 07:49:27 +00:00
{% for backer in site.data.backers["30"] reversed %}
2018-05-03 00:39:33 +00:00
{% include elements/patreon-item.html %}
{% endfor %}
2020-01-20 07:49:27 +00:00
{% for backer in site.data.github["30"] reversed %}
{% include elements/github-item.html %}
{% endfor %}
2018-10-09 11:15:59 +00:00
</tbody>
</table>
2018-05-03 00:39:33 +00:00
2018-04-10 17:50:19 +00:00
<h2 class="title is-5">
2020-01-20 07:49:27 +00:00
Documentation sponsors ($500+)
2018-04-10 17:50:19 +00:00
</h2>
2018-10-09 11:15:59 +00:00
<table class="table is-bordered">
{{ table_head }}
<tbody>
2020-01-20 07:49:27 +00:00
{% for backer in site.data.backers["500"] reversed %}
2018-04-10 17:50:19 +00:00
{% include elements/patreon-item.html %}
{% endfor %}
2018-10-09 11:15:59 +00:00
</tbody>
</table>
2017-11-15 13:01:33 +00:00
2018-04-10 17:50:19 +00:00
<h2 class="title is-5">
2020-01-20 07:49:27 +00:00
Homepage sponsors ($100+)
2018-04-10 17:50:19 +00:00
</h2>
2018-10-09 11:15:59 +00:00
<table class="table is-bordered">
{{ table_head }}
<tbody>
2020-01-20 07:49:27 +00:00
{% for backer in site.data.backers["100"] reversed %}
2018-04-10 17:50:19 +00:00
{% include elements/patreon-item.html %}
{% endfor %}
2020-01-20 07:49:27 +00:00
{% for backer in site.data.github["100"] reversed %}
{% include elements/github-item.html %}
{% endfor %}
2018-10-09 11:15:59 +00:00
</tbody>
</table>
2018-04-02 22:29:59 +00:00
2018-04-10 17:50:19 +00:00
<h2 class="title is-5">
2020-01-20 07:49:27 +00:00
Bulma backers ($10+)
2018-04-10 17:50:19 +00:00
</h2>
2018-10-09 11:15:59 +00:00
<table class="table is-bordered">
{{ table_head }}
<tbody>
2018-04-10 17:50:19 +00:00
{% for backer in site.data.backers["10"] reversed %}
{% include elements/patreon-item.html %}
{% endfor %}
2020-01-20 07:49:27 +00:00
{% for backer in site.data.github["10"] reversed %}
{% include elements/github-item.html %}
{% endfor %}
2018-10-09 11:15:59 +00:00
</tbody>
</table>