|
| 1 | +--- |
| 2 | +title: Donate |
| 3 | +description: >- |
| 4 | + Support Luanti with a financial contribution. |
| 5 | +layout: base |
| 6 | +--- |
| 7 | +{% assign langPrefix = "/" | append: lang | append: "/" %} |
| 8 | + |
| 9 | +<main> |
| 10 | + <div class="container"> |
| 11 | + <h1 id="donate" class="title main-title">{{ "Donate" | i18n }}</h1> |
| 12 | + <div class="columns"> |
| 13 | + <article class="column is-half content"> |
| 14 | + <h2 class="title is-size-2" id="support-luanti">{{ "Support Luanti" | i18n }}</h2> |
| 15 | + <p> |
| 16 | + {{ "Luanti is a member of Open Collective Europe, a non-profit based in Belgium." | i18n }} |
| 17 | + {{ "It is equivalent to a US 501(c)3 non-profit for public benefit." | i18n }} |
| 18 | + {{ "You can donate to Luanti's non-profit collective to help support and grow the project. " | i18n }} |
| 19 | + </p> |
| 20 | + <p> |
| 21 | + {{ "We use the Open Collective platform to collect donations." | i18n }} |
| 22 | + {{ "It provides a public and transparent ledger for our finances, allowing you to see where the money is going." | i18n }} |
| 23 | + </p> |
| 24 | + <p class="is-flex is-align-items-center is-gap-4"> |
| 25 | + <a class="button is-large is-primary" href='https://opencollective.com/luanti/'> |
| 26 | + {{ "Donate" | i18n }} |
| 27 | + </a> |
| 28 | + <a href='https://blog.luanti.org/2025/11/05/non-profit/'> |
| 29 | + {{ "Read the announcement" | i18n }} |
| 30 | + </a> |
| 31 | + </p> |
| 32 | + </article> |
| 33 | + </div> |
| 34 | + </div> |
| 35 | + |
| 36 | + <section class="section"> |
| 37 | + <div class="container"> |
| 38 | + <h3 class="title is-size-3" id="credits">{{ "Supporters" | i18n }}</h3> |
| 39 | + <noscript> |
| 40 | + <!-- to reduce translator burden, not making this translatable --> |
| 41 | + <p> |
| 42 | + JavaScript is required to see supporters here. |
| 43 | + Alternatively, you can view them on <a href="https://opencollective.com/luanti">Open Collective</a>. |
| 44 | + </p> |
| 45 | + </noscript> |
| 46 | + <p id="credits-loading">{{ "Loading…" | i18n }}</p> |
| 47 | + <div id="credits-container" class="columns is-multiline"></div> |
| 48 | + <script src="/assets/js/opencollective.js"></script> |
| 49 | + </div> |
| 50 | + </section> |
| 51 | + |
| 52 | + <section class="section"> |
| 53 | + <div class="container"> |
| 54 | + <h2 class="title is-size-2">{{ "Support staff and the community" | i18n }}</span></h2> |
| 55 | + |
| 56 | + <div class="columns is-multiline"> |
| 57 | + {% for point in donate.community %} |
| 58 | + <div class="column is-one-third"> |
| 59 | + <article class="card" style="display: flex; flex-direction: column; min-height: 100%;"> |
| 60 | + <div class="card-content"> |
| 61 | + <h3 class="title is-4"> |
| 62 | + {% if point.i18n_name %} |
| 63 | + {{ point.name | i18n }} |
| 64 | + {% else %} |
| 65 | + {{ point.name }} |
| 66 | + {% endif %} |
| 67 | + {% if point.title %} |
| 68 | + <span class="is-size-5 has-text-grey has-text-weight-normal"> |
| 69 | + ({{ point.title | i18n }}) |
| 70 | + </span> |
| 71 | + {% endif %} |
| 72 | + </h3> |
| 73 | + <p> |
| 74 | + {{ point.description | i18n }} |
| 75 | + </p> |
| 76 | + </div> |
| 77 | + <footer class="card-footer" style="margin-top: auto;"> |
| 78 | + {% for pair in point.links %} |
| 79 | + <a class="card-footer-item" href="{{ pair[1] }}"> |
| 80 | + {% if point.i18n_links %} |
| 81 | + {{ pair[0] | i18n }} |
| 82 | + {% else %} |
| 83 | + {{ pair[0] }} |
| 84 | + {% endif %} |
| 85 | + </a> |
| 86 | + {% endfor %} |
| 87 | + </footer> |
| 88 | + </article> |
| 89 | + </div> |
| 90 | + {% endfor %} |
| 91 | + </div> |
| 92 | + </div> |
| 93 | + </section> |
| 94 | +</main> |
0 commit comments