This commit is contained in:
Jeremy Thomas
2024-03-21 16:11:54 +00:00
parent 16f1b76881
commit 69877a652c
3261 changed files with 255369 additions and 108913 deletions

View File

@@ -0,0 +1,19 @@
{% if site.data.backers[include.tier].size > 0 or site.data.github[include.tier].size > 0 %}
<div class="bd-backers-heading">
<h2>{{ include.title }}</h2>
</div>
<div class="bd-backers-group">
<ul class="bd-backers-list bd-is-patreon">
{% for pt in site.data.backers[include.tier] reversed %}
{% include docs/elements/patreon-item.html backer=pt %}
{% endfor %}
</ul>
<ul class="bd-backers-list bd-is-github">
{% for gh in site.data.github[include.tier] reversed %}
{% include docs/elements/github-item.html sponsor=gh %}
{% endfor %}
</ul>
</div>
{% endif %}