Web/main/_includes/support.html
Ell 69f610fc99
All checks were successful
Jenkins
Ellpeck/Web/pipeline/head This commit looks good
added social disclaimer, and some styling improvements
2023-05-17 10:00:09 +02:00

26 lines
1.1 KiB
HTML

<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. ❤️
</p>
<div id="support-list">
{% for item in site.data.support %}
<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>
<p class="card-text">{{ item.text }}</p>
</div>
</div>
{% endfor %}
</div>
<script>
if (dark) {
$("#support-list").find(".btn-outline-dark").each(function () {
let e = $(this);
e.removeClass("btn-outline-dark");
e.addClass("btn-outline-light");
});
}
</script>
</div>