[Design][SSG] Add donate page.

This commit is contained in:
2020-02-02 03:35:27 +05:30
parent 1cbf2e9554
commit 0080597858
4 changed files with 29 additions and 1 deletions

9
donate.html Normal file
View File

@@ -0,0 +1,9 @@
{% 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 %}