2026-06-09 13:48:48 +04:00
|
|
|
<section id="dons" class="support">
|
2025-11-05 17:32:17 +04:00
|
|
|
<div class="section-container">
|
2026-07-06 08:14:52 +04:00
|
|
|
<h2>{{ t.support.section_title }} <span class="accent-text">{{ t.support.section_title_accent }}</span></h2>
|
2026-07-06 01:23:33 +04:00
|
|
|
<p class="support-lede">
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.support.lede }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</p>
|
2026-07-06 01:23:33 +04:00
|
|
|
<p class="support-lede-secondary">
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.support.lede_secondary }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</p>
|
|
|
|
|
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="donation-panels">
|
2025-11-05 17:32:17 +04:00
|
|
|
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="support-panel support-panel--primary">
|
2026-07-06 08:14:52 +04:00
|
|
|
<h3>{{ t.support.one_time_title }}</h3>
|
2025-11-05 17:32:17 +04:00
|
|
|
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="donation-grid">
|
2026-07-06 08:14:52 +04:00
|
|
|
{% for d in donations.oneTime %}
|
|
|
|
|
<a href="{{ d.url }}" class="donation-amount" target="_blank" rel="noopener noreferrer">
|
|
|
|
|
{{ d.amount }}{{ t.support.one_time_suffix }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</a>
|
2026-07-06 08:14:52 +04:00
|
|
|
{% endfor %}
|
2025-11-05 17:32:17 +04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div style="text-align: center;">
|
2026-07-06 08:14:52 +04:00
|
|
|
<label class="donation-form-label">{{ t.support.custom_amount_label }}</label>
|
2025-11-05 17:32:17 +04:00
|
|
|
<div class="custom-donation-form">
|
2026-07-06 08:14:52 +04:00
|
|
|
<input type="number" id="customAmountOneTime" placeholder="{{ t.support.custom_amount_placeholder }}" min="1" class="custom-amount-input">
|
|
|
|
|
<span class="currency-symbol">{{ t.support.one_time_suffix }}</span>
|
2026-07-07 23:56:56 +04:00
|
|
|
<button data-donation-type="oneTime" class="custom-donation-btn custom-donation-btn-primary">
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.support.custom_amount_btn }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="support-panel support-panel--secondary">
|
2026-07-06 08:14:52 +04:00
|
|
|
<h3>{{ t.support.monthly_title }}</h3>
|
2025-11-05 17:32:17 +04:00
|
|
|
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="donation-grid">
|
2026-07-06 08:14:52 +04:00
|
|
|
{% for d in donations.monthly %}
|
|
|
|
|
<a href="{{ d.url }}" class="donation-amount monthly" target="_blank" rel="noopener noreferrer">
|
|
|
|
|
{{ d.amount }}{{ t.support.monthly_suffix }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</a>
|
2026-07-06 08:14:52 +04:00
|
|
|
{% endfor %}
|
2025-11-05 17:32:17 +04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div style="text-align: center;">
|
2026-07-06 08:14:52 +04:00
|
|
|
<label class="donation-form-label">{{ t.support.custom_monthly_label }}</label>
|
2025-11-05 17:32:17 +04:00
|
|
|
<div class="custom-donation-form">
|
2026-07-06 08:14:52 +04:00
|
|
|
<input type="number" id="customAmountMonthly" placeholder="{{ t.support.custom_amount_placeholder }}" min="1" class="custom-amount-input custom-amount-input-monthly">
|
|
|
|
|
<span class="currency-symbol">{{ t.support.monthly_suffix }}</span>
|
2026-07-07 23:56:56 +04:00
|
|
|
<button data-donation-type="monthly" class="custom-donation-btn custom-donation-btn-secondary">
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.support.custom_monthly_btn }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="alt-donation-section">
|
|
|
|
|
<h3 class="alt-donation-title">
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.support.alt_title }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</h3>
|
|
|
|
|
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="alt-donation-grid">
|
2026-07-06 08:14:52 +04:00
|
|
|
<a href="{{ donations.liberapay }}" target="_blank" rel="noopener noreferrer" class="alt-donation-card alt-donation-card--liberapay">
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="alt-donation-icon">💛</div>
|
2026-07-06 08:14:52 +04:00
|
|
|
<h4>{{ t.support.liberapay_title }}</h4>
|
2026-07-06 01:23:33 +04:00
|
|
|
<p>
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.support.liberapay_text }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</p>
|
|
|
|
|
</a>
|
|
|
|
|
|
2026-07-06 08:14:52 +04:00
|
|
|
<a href="{{ donations.kofi }}" target="_blank" rel="noopener noreferrer" class="alt-donation-card alt-donation-card--kofi">
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="alt-donation-icon">☕</div>
|
2026-07-06 08:14:52 +04:00
|
|
|
<h4>{{ t.support.kofi_title }}</h4>
|
2026-07-06 01:23:33 +04:00
|
|
|
<p>
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.support.kofi_text }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</p>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-07-06 01:23:33 +04:00
|
|
|
<div class="security-note">
|
|
|
|
|
<p>
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.support.security_stripe | safe }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</p>
|
2026-07-06 01:23:33 +04:00
|
|
|
<p>
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.support.security_alt }}
|
2025-11-05 17:32:17 +04:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|