rf-web/_includes/common/donors.html
2020-11-23 00:10:48 +01:00

15 lines
353 B
HTML

{% assign donors = site.data.rf2020.donors %}
<ul class="donors">
{% for donor in donors %}
<li>
{% if donor.url %}
<a href="{{ donor.url }}">{{ donor.name | strip }}</a>
{% else %}
{{ donor.name }}
{% endif %}
<strong>— {{ donor.amount }}</strong>
</li>
{% endfor %}
</ul>