44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
---
|
|
title: "Donate"
|
|
layout: default
|
|
---
|
|
<h1>Donate</h1>
|
|
<div>
|
|
<p>
|
|
While all of the software I write is licensed under free licensing, some of it is hosted using services that I pay for. Everything on lynnesbian.space (including <a href='https://fedi.lynnesbian.space'>fedi.lynnesbian.space</a>) is hosted on a <a href='https://vultr.com'>Vultr</a> VPS, which costs me US$48/mo (more than A$70/mo), alongside Wasabi storage, which fluctuates in price between US$5 to US$7.
|
|
</p>
|
|
<p>
|
|
On top of these costs, there are also costs that can't be directly assigned a dollar value, like the labour involved in maintaining the software I provide, the server that publicly hosts much of it, and so on.
|
|
</p>
|
|
<p>
|
|
If you'd like to donate, you can do so with any of the following links. Thank you very much for your consideration.
|
|
</p>
|
|
|
|
<h2>One time</h2>
|
|
<div class='donation-methods'>
|
|
{% for method in site.data.donations.once -%}
|
|
<div class='donation-method'>
|
|
<h2>{{ method.name }}</h2>
|
|
<p>
|
|
{{ method.description }}
|
|
</p>
|
|
<div class='footer'><a href='{{ method.link }}'>Link</a></div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<h2>Recurring</h2>
|
|
<div class='donation-methods'>
|
|
{% for method in site.data.donations.recurring -%}
|
|
<div class='donation-method'>
|
|
<h2>{{ method.name }}</h2>
|
|
<p>
|
|
{{ method.description }}
|
|
</p>
|
|
<div class='footer'><a href='{{ method.link }}'>Donate with {{ method.name }}</a></div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
{%- comment -%} {{ site.data.donations.recurring }} {%- endcomment -%}
|