summaryrefslogtreecommitdiff
path: root/templates/public/donate.html
blob: 7b008817a36f76e8285ab166fd106cb7081ea542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{% extends "base.html" %}
{% load cache %}
{% load cdn %}

{% block title %}Parabola - Donate{% endblock %}

{% block content %}
{% cache 600 donations secure %}
<div id="donations" class="box">

    <h2>Donate to Parabola</h2>

    <p>Parabola survives because of the tireless efforts of many people in
    the community and the core development circle.  None of us are paid for
    our work, and we don't have the personal funds to sustain server costs
    ourselves.</p>

    <p>There are many ways to help support Parabola.  If technical development,
    documentation, or support aren't your strong points, you could certainly
    help us by dropping a few bucks our way.</p>

    <p>Many thanks!</p>

    <h3>Monetary donations</h3>

    <p>At the moment, we are currently not taking monetary donations, but we
    may accept them in the future.</p>

    <h3>Commercial sponsors and contributions</h3>

{% comment %}
<!-- TODO: -->    
    <p> We'd like to thank <!-- the guy wich donated the vserver or his company --></p>
{% endcomment %}

    <h3>Past donors</h3>

    <div id="donor-list">
        <ul>
            {% for donor in donors %}
            <li>{{ donor.name }}</li>{% endfor %}
        </ul>
    </div>
    <div class="clear"></div>
    <p>A huge thanks to you all for your contributions!</p>
</div>
{% endcache %}
{% endblock %}