Carriage return.
[archweb_dev-nj.git] / templates / devel / donate.html
blobf437c4b24fd245977971911f19c95a17cafa5eab
1 {% extends "base.html" %}
3 {% block content %}
4 <div class="box">
5 <h2 class="title">Donate to Arch Linux</h2>
6 <p>
7 Arch Linux survives because of the tireless efforts of many people in
8 the community and the core development circle. None of us are paid for our
9 work, and we don't have the personal funds to sustain server costs ourselves.
10 </p><p>
11 There are many ways to help Arch Linux. If technical development,
12 documentation, or support aren't your strong points, you could certainly
13 help us by dropping a few bucks our way.
14 </p><p>
15 Many thanks!
16 </p>
17 <div style="text-align:center">
18 <!-- paypal code -->
19 <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
20 <input type="hidden" name="cmd" value="_xclick">
21 <input type="hidden" name="business" value="aaronmgriffin@gmail.com">
22 <input type="hidden" name="currency_code" value="USD">
23 <input type="hidden" name="tax" value="0">
24 <input type="hidden" name="lc" value="US">
25 <input type="hidden" name="bn" value="PP-DonationsBF">
26 <input type="hidden" name="item_name" value="Arch Linux Donation">
27 <input type="hidden" name="image_url" value="/media/arch-paypal.jpg">
28 <input type="hidden" name="no_shipping" value="1">
29 <input type="hidden" name="cn" value="Suggestions/Comments">
30 <input type="hidden" name="no_note" value="1">
31 <input type="image" src="https://www.paypal.com/images/x-click-butcc-donate.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!" style="background: transparent; border: none">
32 </form>
33 </div>
34 <br /><br />
35 <h2 class="title">Past Donors</h2>
36 <table width="100%">
37 <tr>
38 <td style="font-size:x-small;vertical-align:top">
39 {% for donor in slice1 %}
40 {{ donor.name }}<br />
41 {% endfor %}
42 </td>
43 <td style="font-size:x-small;vertical-align:top">
44 {% for donor in slice2 %}
45 {{ donor.name }}<br />
46 {% endfor %}
47 </td>
48 <td style="font-size:x-small;vertical-align:top">
49 {% for donor in slice3 %}
50 {{ donor.name }}<br />
51 {% endfor %}
52 </td>
53 <td style="font-size:x-small;vertical-align:top">
54 {% for donor in slice4 %}
55 {{ donor.name }}<br />
56 {% endfor %}
57 </td>
58 </tr>
59 </table>
60 </div>
61 <br /><br />
62 {% endblock %}