rf-web/_includes/common/donors.html

15 lines
353 B
HTML
Raw Permalink Normal View History

2020-11-22 23:10:48 +00:00
{% 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>