hide support section for now
All checks were successful
/ web (push) Successful in 1m6s

This commit is contained in:
Ell 2024-05-06 11:23:32 +02:00
parent ede5f3d30d
commit d5e3450f87
2 changed files with 24 additions and 6 deletions

View file

@ -2,21 +2,30 @@
{
"name": "🪙 Buy Stuff I Made",
"text": "Some of the stuff I make is directly for sale, and buying it is an easy way to support me! For example, you can buy my game Tiny Life on Steam.",
"link": "#projects"
"link": "#projects",
"hide": true
},
{
"name": "☕ Buy me a Coffee",
"text": "Ko-fi is a great site that allows you to send me just enough money to buy a coffee. And I love those. You can also use it to send monthly payments, but the other sites in this list are usually better for that.",
"link": "https://ko-fi.com/ellpeck"
"link": "https://ko-fi.com/ellpeck",
"hide": true
},
{
"name": "⭐ Become a Patron",
"text": "Patreon allows you to support me on a monthly basis with an amount of money of your choosing. You can also get fun rewards, like player accessories to impress your friends when using my Minecraft mods!",
"link": "https://patreon.com/Ellpeck"
"link": "https://patreon.com/Ellpeck",
"hide": true
},
{
"name": "💻 Sponsor on GitHub",
"text": "GitHub Sponsors is basically Patreon for programmers, and it provides a monthly support option, but it also allows you to make one-time payments. Here, you can get the same rewards as you get on Patreon.",
"link": "https://github.com/sponsors/Ellpeck"
"link": "https://github.com/sponsors/Ellpeck",
"hide": true
},
{
"name": "💖 Help Others Instead",
"text":"I don't currently need additional monetary support, but thank you so much for considering supporting me! If you need a way to get rid of your extra cash, I recommend donating to charities like <a href=\"https://outrightinternational.org/\">Outright International</a>, <a href=\"https://blacklivesmatter.com/\">Black Lives Matter</a>, the <a href=\"https://www.globalfundforwomen.org/\">Global Fund for Women</a>, or the <a href=\"https://autisticadvocacy.org/\">Autistic Self Advocacy Network</a>.",
"hide": false
}
]

View file

@ -1,13 +1,22 @@
<div class="list-display rounded">
<h1 id="support">💸 Support Me</h1>
<p>
Most of the projects you know me from, I work on in my free time, but by supporting me, you help out with all of my projects equally. As I'm a student, a bit of extra cash is always helpful for me, and it feels especially good when it comes from something that I enjoy doing a lot. ❤️
Most of the projects you know me from, I work on in my free time, but by supporting me, you help out with all of my projects equally. A bit of extra cash is always helpful for me, and it feels especially good when it comes from something that I enjoy doing a lot. ❤️
</p>
<div id="support-list">
{% for item in site.data.support %}
{% if item.hide %}
{% continue %}
{% endif %}
<div class="card bg-light support-entry rounded-0">
<div class="card-body">
<h4 class="card-title"><a class="title-button" href="{{ item.link }}">{{ item.name }}</a></h4>
<h4 class="card-title">
{% if item.link %}
<a class="title-button" href="{{ item.link }}">{{ item.name }}</a>
{% else %}
{{ item.name }}
{% endif %}
</h4>
<p class="card-text">{{ item.text }}</p>
</div>
</div>