mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
08ef4df2c0
* Add Bulma v9 * Add vendor dependencies * Fix native * Fix sponsors * Add style attribute
20 lines
620 B
HTML
20 lines
620 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 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 elements/github-item.html sponsor=gh %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|