redacted.life/donate.html

10 lines
251 B
HTML
Raw Normal View History

2020-02-01 23:05:27 +01:00
{% extends "base.html" %}
{% block title %}Donate | Redacted Life{% endblock %}
{% block left_content %}
<ul class="donate">
{% for donate in donations %}
<li><a href="{{ donate.link }}">{{ donate.text }}</a></li>
{% endfor %}
</ul>
{% endblock %}