diff --git a/src/aw/views.py b/src/aw/views.py index 1f39a45..313fe17 100644 --- a/src/aw/views.py +++ b/src/aw/views.py @@ -396,3 +396,10 @@ def lh(_: str) -> Response: f"https://git.ari.lt/ari.lt/{flask.request.full_path[3:]}", code=302, ) + + +@views.get("/thanks/", alias=True) +@views.get("/thanks") +def thanks() -> str: + """Thanks page""" + return flask.render_template("thanks.j2") diff --git a/src/templates/thanks.j2 b/src/templates/thanks.j2 new file mode 100644 index 0000000..cfe67bd --- /dev/null +++ b/src/templates/thanks.j2 @@ -0,0 +1,65 @@ +{% extends "base.j2" %} + +{% block title %}Index{% endblock %} + +{% block description %}Thanks to my supporters on Bitcoin and Monero!{% endblock %} + +{% block keywords %}ari::web, services, foss services, homepage, portfolio, resume, matrix, says, https, email, guestbook{% endblock %} + +{% block head %} + + + + + + +{% endblock %} + +{% block header %} +

Thanks to my supporters!

+ +

+ Sometimes I get donations on XMR (OpenAlias: xmr@ari.lt) or BTC (OpenAlias: btc@ari.lt). Thanks to everyone donating! I appriciate it a lot. + If you donate you can specify a message/url/whatever to add to this page, send it to ari@ari.lt if you want it :) Here's a list of all donations + I've received so far since the start of the donations page mid-2023: +

+ + + +

+ Thanks to all of you for the support! It means a lot to me even if it's 1 cent <3 +

+{% endblock %}