mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
17 lines
354 B
HTML
17 lines
354 B
HTML
{% if site.data.backers[include.tier].size > 0 or site.data.github[include.tier].size > 0 %}
|
|
<h2>{{ include.title }}</h2>
|
|
|
|
<ul>
|
|
{% for pt in site.data.backers[include.tier] reversed %}
|
|
<li>
|
|
{{ pt.name }}
|
|
</li>
|
|
{% endfor %}
|
|
{% for gh in site.data.github[include.tier] reversed %}
|
|
<li>
|
|
{{ gh }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|