Files
bulma/docs/_includes/docs/elements/backers-group.html
Jeremy Thomas 69877a652c Init v1
2024-03-21 16:11:54 +00:00

20 lines
630 B
HTML

{% 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 %}