Files
capsulflask
btcpay
schema_migrations
shell_scripts
static
templates
tests
theme
yolocolo
account-balance.html
base.html
capsuls.html
faq.html
index.html
pricing.html
support.html
__init__.py
admin.py
auth.py
cli.py
console.py
db.py
db_model.py
http_client.py
hub_api.py
hub_model.py
landing.py
metrics.py
payment.py
shared.py
spoke_api.py
spoke_model.py
tests_base.py
docs
.drone.yml
.gitignore
Dockerfile
LICENSE.md
Pipfile
Pipfile.lock
README.md
app.py
docker-compose.yml
letsencrypt-root-ca.crt
setup.cfg
setup.py
capsul-flask/capsulflask/theme/yolocolo/support.html
3wordchant 5bb76173dd Add custom themes, THEME setting, basic "yolocolo" theme ()
Specify `THEME=yourtheme`, add some HTML files in `capsulflask/theme/yourtheme` 👌

We probably want to reduce copypasta in the current `yolocolo` theme by using template inheritance, at some point.

Reviewed-on: 
Co-authored-by: 3wordchant <3wordchant@noreply.git.autonomic.zone>
Co-committed-by: 3wordchant <3wordchant@noreply.git.autonomic.zone>
2021-07-22 01:15:39 +02:00

22 lines
572 B
HTML

{% extends 'base.html' %}
{% block title %}Support{% endblock %}
{% block content %}
<div class="row half-margin">
<h1>SUPPORT</h1>
</div>
<div class="row half-margin">
<a href="mailto:yolocolo@doesthisthing.work?subject=Please%20help!">yolocolo@doesthisthing.work</a>
</div>
{% endblock %}
{% block subcontent %}
<p>
You can also find us on Matrix: <a
href="https://matrix.to/#/#untitled-hosting.public:autonomic.zone">#untitled-hosting.public:autonomic.zone</a>.
</p>
{% endblock %}
{% block pagesource %}/templates/support.html{% endblock %}