diff options
author | eliott <eliott@cactuswax.net> | 2007-12-29 18:42:50 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-12-29 18:42:50 -0800 |
commit | 8fcdf0c2cde1c3cff98be4572a0e9e3a1d910901 (patch) | |
tree | aa49de02aa64dfade956dbd9e79f09bf7fc06f13 /templates/public/donate.html | |
parent | 45454908dfa2c925c4689d74fc84c4c2055257ab (diff) |
Moved some templates around
Diffstat (limited to 'templates/public/donate.html')
-rw-r--r-- | templates/public/donate.html | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/templates/public/donate.html b/templates/public/donate.html deleted file mode 100644 index 9436b09a..00000000 --- a/templates/public/donate.html +++ /dev/null @@ -1,63 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -<div class="box"> - <h2 class="title">Donate to Arch Linux</h2> - <p> - Arch Linux 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 Arch Linux. 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> - <div style="text-align:center"> - <!-- paypal code --> - <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> - <input type="hidden" name="cmd" value="_xclick"> - <input type="hidden" name="business" value="aaronmgriffin@gmail.com"> - <input type="hidden" name="currency_code" value="USD"> - <input type="hidden" name="tax" value="0"> - <input type="hidden" name="lc" value="US"> - <input type="hidden" name="bn" value="PP-DonationsBF"> - <input type="hidden" name="item_name" value="Arch Linux Donation"> - <input type="hidden" name="image_url" value="/logos/arch-paypal.jpg"> - <input type="hidden" name="no_shipping" value="1"> - <input type="hidden" name="cn" value="Suggestions/Comments"> - <input type="hidden" name="no_note" value="1"> - <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"> - </form> - </div> - <br /><br /> - <h2 class="title">Past Donors</h2> - <table width="100%"> - <tr> - <td style="font-size:x-small;vertical-align:top"> - {% for donor in slice1 %} - {{ donor.name }}<br /> - {% endfor %} - </td> - <td style="font-size:x-small;vertical-align:top"> - {% for donor in slice2 %} - {{ donor.name }}<br /> - {% endfor %} - </td> - <td style="font-size:x-small;vertical-align:top"> - {% for donor in slice3 %} - {{ donor.name }}<br /> - {% endfor %} - </td> - <td style="font-size:x-small;vertical-align:top"> - {% for donor in slice4 %} - {{ donor.name }}<br /> - {% endfor %} - </td> - </tr> - </table> -</div> -<br /><br /> -{% endblock %} - |