Files
Escapepage/templates/website/home/help_wanted.html.twig
T
Frank 1e644eb13b Add "Looking for Help" page for the open visual artist request
Adds a /looking-for-help page listing the open volunteer request and
links it from the site footer on every page.
2026-07-04 23:23:04 +02:00

34 lines
1.5 KiB
Twig

{% extends 'layout/site.html.twig' %}
{% block title %}Looking for Help | {{ 'site.name'|trans }}{% endblock %}
{% block body %}
<div class="row justify-content-center">
<div class="col-lg-9">
<div class="text-center mb-5">
<h1 class="display-6 fw-bold">Looking for Help</h1>
<p class="lead text-secondary">This site is a passion project, and every now and then it needs a hand.</p>
</div>
<div class="card shadow-sm">
<div class="card-header bg-secondary text-white d-flex justify-content-between align-items-center">
<span>Open Request</span>
<span class="badge bg-primary">Visual Artist</span>
</div>
<div class="card-body">
<p>
For this website, I am looking for some help in the field of art. I have unfortunately used
a bit of AI to create some images, and I would really like to get it done by someone real.
</p>
<p>
Unfortunately, this site is currently just costing me money, so I am not in a position to pay
a huge amount, but if you would be interested to have your art out to (hopefully) a lot of
people, and you have ideas on how to make it something nice, please reach out to me. We can
discuss payment and ideas then.
</p>
</div>
</div>
</div>
</div>
{% endblock %}