]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/sponsors/index.html
sponsors: Make the amount shorter
[ipfire.org.git] / src / templates / sponsors / index.html
CommitLineData
8d45158b
MT
1{% extends "../base.html" %}
2
3{% block title %}♥ {{ _("Sponsor Us") }}{% end block %}
4
5{% block container %}
6 {# Supported currencies #}
7 {% set currencies = ("EUR", "USD") %}
8
9 {# Proposed Amounts #}
10 {% set amounts = (5, 10, 20, 30, 50) %}
11
12 <section class="hero is-primary is-fullheight-with-navbar">
33c11fad 13 <div class="hero-body is-flex-grow-2">
8d45158b
MT
14 <div class="container">
15 <h1 class="title">
16 {{ _("Become A Sponsor Today") }}
17 </h1>
18
19 <p class="subtitle">
1f7e8572 20 {{ _("Powered by Sponsors, Securing the Future") }}
8d45158b
MT
21 </p>
22
33c11fad 23 <div class="columns p-5">
8d45158b
MT
24 {% for amount in amounts %}
25 <div class="column">
26 <form method="GET" action="/sponsors/next">
27 <input type="hidden" name="amount" value="{{ amount }}">
28 <input type="hidden" name="currency" value="{{ currency }}">
29
30 <button class="button is-large is-fullwidth"">
3dc8cde7
MT
31 {{ format_money(amount, currency).replace(".00", "") }}
32 <small>/{{ _("month") }}</small>
8d45158b
MT
33 </button>
34 </form>
35 </div>
36 {% end %}
37 </div>
38
33c11fad
MT
39 <div class="columns">
40 <div class="column has-text-centered">
41 <p>
42 Sponsoring IPFire is crucial for sustaining the development,
43 ensuring continuous improvement, global accessibility, and
44 community support.
45 </p>
46 </div>
47
48 <div class="column has-text-centered">
49 <p>
50 Be featured as a key supporter on our website, social media,
51 and official communications, showcasing your commitment to
52 IPFire and open-source initiatives.
53 </p>
54 </div>
55
56 <div class="column has-text-centered">
57 <p>
58 Collaborate directly with the IPFire development team.
59 Influence roadmaps, propose features, and be at the forefront
60 of innovations shaping the future of network security.
61 </p>
62 </div>
63 </div>
64 </div>
65 </div>
66
67 <div class="hero-body is-flex-shrink-2">
68 <div class="container">
8d45158b
MT
69 <div class="level">
70 <div class="level-item is-justify-content-space-between is-align-content-center">
71 <span class="pf pf-2x pf-american-express mx-1"></span>
72 <span class="pf pf-2x pf-mastercard-alt mx-1"></span>
73 <span class="pf pf-2x pf-visa mx-1"></span>
74 <span class="pf pf-2x pf-sepa mx-1"></span>
75 <span class="pf pf-2x pf-paypal mx-1"></span>
76 </div>
77
78 {# Offer alternative currencies #}
79 {% for c in currencies %}
80 {% if not c == currency %}
81 <div class="level-item">
82 <a href="/sponsors?currency={{ c }}">
83 {{ _("I prefer sponsoring in %s") % format_currency(c) }}
84 </a>
85 </div>
86 {% end %}
87 {% end %}
88
89 <div class="level-item">
90 <a href="/sponsors/faq">
91 {{ _("Frequently Asked Questions") }}
92 </a>
93 </div>
94 </div>
95 </div>
96 </div>
97 </section>
98{% end block %}