summaryrefslogtreecommitdiff
path: root/templates/public/donate.html
blob: e171b40e39c54d09690f392fdf6e232323152e10 (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
{% extends "base.html" %}
{% load cache %}
{% load static from staticfiles %}

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

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

    <h2>Donate to {{ BRANDING_DISTRONAME }}</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 preferred 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 by donating some of your
    time. That will be very much appreciated by us :)</p>

</div>
{% endcache %}
{% endblock %}