10 lines
251 B
HTML
10 lines
251 B
HTML
|
{% 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 %}
|