summaryrefslogtreecommitdiff
path: root/templates/public/donate.html
blob: 5ac888de2dff905562616706bab1ecdb4a6ce32f (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
{% 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>

    <h3>We don't accept any money donations</h3>

    <p>That's right. At the moment, Parabola isn't accepting any money
    donations. And that's because we have nothing to do with them. We really
    don't, at the moment. So, some voluntary work is much preffered than
    anything, because we are a really small community of hackers.</p>

{% comment %}
<!-- TODO: -->    
    <p> We'd like to thank <!-- the guy wich donated the vserver or his company --></p>
{% endcomment %}
{% comment %}
    <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>
{% endcomment %}
</div>
{% endcache %}
{% endblock %}