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