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

    <p>If you want, we have a pretty nice <a
        href='http://wiki.parabolagnulinux.org/TODO' title='The TODO
        list!'>TODO list</a> you can check to help us.</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 %}