]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/donate.html
Massive web site update
[people/shoehn/ipfire.org.git] / templates / donate.html
1 {% extends "base-1.html" %}
2
3 {% block title %}{{ _("Donate") }}{% end block %}
4
5 {% block container %}
6 <section class="container content-section text-center">
7 <div class="page-header">
8 <h1>{{ _("Donate now") }}</h1>
9 </div>
10
11 {% if lang == "de" %}
12 <p class="lead">
13 IPFire ist ein Open-Source-Softwareprojekt.
14 Die Entwicklung und die Fortführung des Projekts wird allein
15 von einer Gruppe von Freiwilligen getragen, die ein Produkt
16 entwickelt hat, das tagtäglich von Hunderttausenden genutzt
17 wird.
18 </p>
19 {% else %}
20 <p class="lead">
21 IPFire is an Open Source software project.
22
23 Development and keeping the project healthy is carried out by a
24 group of volunteers who have built a very successful product,
25 which hundreds of thousands of people use every day.
26 </p>
27 {% end %}
28 </section>
29
30 <section class="container content-section text-center">
31 {% module DonationInputBox() %}
32 </section>
33
34 {% if wishlist_items %}
35 <section class="container content-section">
36 <div class="row">
37 <div class="col-md-8 col-md-offset-2">
38 <div class="panel panel-default">
39 <div class="panel-heading">
40 <h3 class="panel-title text-center">
41 {{ _("Current crowd funding projects on the IPFire Wishlist") }}
42 </h3>
43 </div>
44 <div class="panel-body">
45 {% module WishlistItems(wishlist_items) %}
46 </div>
47 </div>
48 </div>
49 </div>
50 </section>
51 {% end %}
52
53 <section id="recurring-donations" class="lighter-background text-center">
54 <div class="container">
55 <div class="row">
56 <div class="col-md-6">
57 <h4>{{ _("Donate by Bank Transfer") }}</h4>
58
59 <dl class="dl-horizontal">
60 <dt>{{ _("IBAN") }}</dt>
61 <dd>DE86 4265 0150 1020 0768 89</dd>
62
63 <dt>{{ _("BIC-/SWIFT-Code") }}</dt>
64 <dd>WELADED1REK</dd>
65
66 {% if reason_for_transfer %}
67 <dt>{{ _("Reason for transfer") }}</dt>
68 <dd>{{ reason_for_transfer }}</dd>
69 {% end %}
70 </dl>
71
72 {% if lang == "de" %}
73 <small>
74 Da das IPFire-Projekt keine registrierte gemeinnützige Organisation
75 ist, können keine steuerlich abzugsfähige Spendenquittungen erstellt
76 werden.
77 </small>
78 {% else %}
79 <small>
80 The IPFire project is not a registered non-profit organisation.
81 <br>
82 Hence we are not able to issue a tax-deductible contribution receipt
83 for your donation.
84 </small>
85 {% end %}
86 </div>
87
88 <div class="col-md-6">
89 <h4>{{ _("Recurring Donations") }}</h4>
90
91 {% if lang == "de" %}
92 <p>
93 Monatliche Spenden helfen das Projekt auf eine solide Basis zu stellen
94 und ermöglichen es uns die weitere Entwicklung besser voranzutreiben.
95 Unabhängig ob die zügige Sicherheitsupdates oder das Einbauen von neuen
96 Funktionen ist, monatliche Spenden sind die Basis um den Fortbestand des
97 Projekts langfristig zu gewährleisten.
98 </p>
99
100 <p>
101 PayPal erlaubt in einigen Ländern eine monatliche Spende, oder du
102 erstellst einfach einen Dauerauftrag bei deiner Bank.
103 </p>
104 {% else %}
105 <p>
106 A great way to support the IPFire project is a recurring donation.
107 These will help to keep the project solidly funded and help us to
108 keep up our development efforts. Either if that is the prompt
109 security updates or introducing new features, recurring donations
110 are the foundation that keeps this project running.
111 </p>
112
113 <p>
114 PayPal allows to set up recurring donations in some countries
115 or you can set up a standing order at your bank if you are
116 want to donate by using bank transfer.
117 </p>
118 {% end %}
119 </div>
120 </div>
121 </div>
122 </section>
123 {% end block %}