updates/fixes related to tildeclub.

This commit is contained in:
fosspay service
2026-06-11 15:43:00 -06:00
parent 907bf2206f
commit ccdad46377
7 changed files with 219 additions and 88 deletions

View File

@@ -20,33 +20,41 @@
{% set gh_progress = gh_sum / adjusted_goal %}
{% set progress = total_sum / goal %}
<div class="progress" style="height: 3rem">
{% if recurring_sum %}
<div
class="progress-bar progress-bar-primary"
style="width: {{ recurring_progress * 100 }}%; line-height: 2.5"
style="width: {{ recurring_progress * 100 }}%; min-width: 0; line-height: 2.5"
>
<span>{{ currency.amount("{:.0f}".format(recurring_sum / 100)) }}</span>
</div>
{% endif %}
{% if patreon_sum %}
<div
class="progress-bar progress-bar-info"
style="width: {{ patreon_progress * 100 }}%; line-height: 2.5"
style="width: {{ patreon_progress * 100 }}%; min-width: 0; line-height: 2.5"
>
<span>{{ currency.amount("{:.0f}".format(patreon_sum / 100)) }}</span>
</div>
{% endif %}
{% if lp_sum %}
<div
class="progress-bar progress-bar-warning"
style="width: {{ lp_progress * 100 }}%; line-height: 2.5"
style="width: {{ lp_progress * 100 }}%; min-width: 0; line-height: 2.5"
>
<span>{{ currency.amount("{:.0f}".format(lp_sum / 100)) }}</span>
</div>
{% endif %}
{% if gh_sum %}
<div
class="progress-bar progress-bar-primary"
style="width: {{ gh_progress * 100 }}%; line-height: 2.5"
style="width: {{ gh_progress * 100 }}%; min-width: 0; line-height: 2.5"
>
<span>{{ currency.amount("{:.0f}".format(gh_sum / 100)) }}</span>
</div>
{% endif %}
</div>
{% endif %}
</div>
@@ -89,7 +97,7 @@
class="text-primary"
href="https://github.com/{{gh_user}}">
GitHub <i class="glyphicon glyphicon-share"></i>
</a></strong> ({{ gh_count }} supporter{{ "s" if lp_count != 1 else "" }})
</a></strong> ({{ gh_count }} supporter{{ "s" if gh_count != 1 else "" }})
</p>
{% endif %}
{% endif %}

View File

@@ -1,13 +1,56 @@
{#
Try to keep this text short. Too long and it distracts from
the donation UI and will reduce the number of conversions you
actually get.
#}
<p>Your donation here supports <a href="https://tilde.club">tilde.club</a>, and any other services that are run by tilde.club.</p>
{# templates/summary.html — combined quickpitch + full donate info #}
<p> I pay for hosting and domain costs out of pocket and spend far more time than I should running these services. Anything you can pitch in helps keep everything up and running.</p>
<p>Your donation keeps our community servers, IRC nodes, and hosted
services online. Current costs run about <strong>$200/month</strong> for
hosting plus <strong>$150/year</strong> in domains.</p>
<p>My hosting costs are around $200/month and domains are around $150/year.</p>
<p class="small">
Payments are processed securely by Stripe; card details never touch our
servers. Stripe charges 2.9% +30¢ per transaction.
</p>
<p>Donations are securely processed through Stripe, and your payment information is not stored on my servers. I am charged a 2.9%+30c fee per transaction.</p>
<p><strong><em>NOTICE: Tilde Club is not a registered legal entity
or charity.Donations are <u>not</u> taxdeductible.</em></strong></p>
<details class="donate-more">
<summary class="btn btn-default btn-lg btn-block donate-summary">More ways to contribute&nbsp;</summary>
<h3 id="methods-you-can-donate-to-tilde.club.">Alternative donation
methods</h3>
<p>All funds offset hosting (servers, domains).</p>
<p>
<a href="https://ko-fi.com/tildeclub">
<img src="https://shields.io/badge/kofi-Support_Us-ff5f5f?logo=ko-fi&style=for-the-badge"
alt="Donate via Kofi">
</a>
</p>
<p>
<a href="https://www.paypal.com/donate?hosted_button_id=DWHSADKJ26HZ8">
<img src="https://img.shields.io/badge/PayPal-Support_Us-003087?logo=paypal&logoColor=fff"
alt="Donate via PayPal">
</a>
</p>
<p>
<a href="https://github.com/sponsors/tildeclub">
<img src="https://img.shields.io/badge/GitHub%20Sponsors-EA4AAA?logo=githubsponsors&logoColor=fff"
alt="GitHub Sponsors">
</a>
</p>
<h4>Affiliate links</h4>
<ul>
<li><a href="https://clients.whc.ca/aff.php?aff=7560">Web Hosting Canada</a> domains &amp; hosting</li>
</ul>
<p><strong>Note:</strong> Email <code>root@tilde.club</code> after donating so we can add you to the GoldStar Supporters list.</p>
<h3 id="be-involved">Be involved!</h3>
<p>The best way to support us is to join the community: open pull
requests on GitHub, chat on IRC, build cool web pages, or develop
software with the tools on tilde.club.</p>
<p>Ask on IRC if you have questions!</p>
</details>