]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/donate.html
Massive web site update
[people/shoehn/ipfire.org.git] / templates / donate.html
CommitLineData
e64ce07e 1{% extends "base-1.html" %}
d964a8fa 2
9b5ac075 3{% block title %}{{ _("Donate") }}{% end block %}
60b0917c
MT
4
5{% block container %}
6 <section class="container content-section text-center">
7 <div class="page-header">
8 <h1>{{ _("Donate now") }}</h1>
9 </div>
9b5ac075 10
60b0917c 11 {% if lang == "de" %}
9b5ac075 12 <p class="lead">
60b0917c
MT
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.
9b5ac075 18 </p>
60b0917c
MT
19 {% else %}
20 <p class="lead">
21 IPFire is an Open Source software project.
e00c06b9 22
60b0917c
MT
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>
e00c06b9 29
60b0917c
MT
30 <section class="container content-section text-center">
31 {% module DonationInputBox() %}
32 </section>
e00c06b9 33
60b0917c
MT
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 %}
e00c06b9 52
60b0917c
MT
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>
e00c06b9 58
60b0917c
MT
59 <dl class="dl-horizontal">
60 <dt>{{ _("IBAN") }}</dt>
61 <dd>DE86 4265 0150 1020 0768 89</dd>
e00c06b9 62
60b0917c
MT
63 <dt>{{ _("BIC-/SWIFT-Code") }}</dt>
64 <dd>WELADED1REK</dd>
e00c06b9 65
60b0917c
MT
66 {% if reason_for_transfer %}
67 <dt>{{ _("Reason for transfer") }}</dt>
68 <dd>{{ reason_for_transfer }}</dd>
69 {% end %}
70 </dl>
e00c06b9 71
60b0917c
MT
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>
e00c06b9 87
60b0917c
MT
88 <div class="col-md-6">
89 <h4>{{ _("Recurring Donations") }}</h4>
e00c06b9 90
60b0917c
MT
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>
e00c06b9 99
60b0917c
MT
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>
e00c06b9 112
60b0917c
MT
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>
e00c06b9 120 </div>
7771acea 121 </div>
60b0917c 122 </section>
f5b55ea7 123{% end block %}