mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
add the thanks page
Signed-off-by: Ari Archer <ari@ari.lt>
This commit is contained in:
parent
78c22d4a02
commit
f97b3a5ee9
2 changed files with 72 additions and 0 deletions
|
@ -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")
|
||||
|
|
65
src/templates/thanks.j2
Normal file
65
src/templates/thanks.j2
Normal file
|
@ -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 %}
|
||||
<link rel="stylesheet" href="{{ url_for("static", filename="fonts/Hack.css") }}" type="text/css" referrerpolicy="no-referrer" />
|
||||
<link rel="stylesheet" href="{{ url_for("static", filename="css/index.css") }}" type="text/css" referrerpolicy="no-referrer" />
|
||||
|
||||
<script type="text/javascript">
|
||||
<!--//--><![CDATA[//><!--
|
||||
/**
|
||||
* @licstart The following is the entire license notice for the JavaScript
|
||||
* code in this page.
|
||||
*
|
||||
* Copyright (C) 2024 Ari Archer
|
||||
*
|
||||
* The JavaScript code in this page is free software: you can redistribute
|
||||
* it and/or modify it under the terms of the GNU Affero General Public License
|
||||
* (AGPL) as published by the Free Software Foundation, either version 3
|
||||
* of the License, or (at your option) any later version. The code is
|
||||
* distributed WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the AGPL
|
||||
* for more details.
|
||||
*
|
||||
* As additional permission under AGPL version 3 section 7, you may
|
||||
* distribute non-source (e.g., minimized or compacted) forms of that code
|
||||
* without the copy of the AGPL normally required by section 4, provided
|
||||
* you include this license notice and a URL through which recipients can
|
||||
* access the Corresponding Source.
|
||||
*
|
||||
* @licend The above is the entire license notice for the JavaScript code
|
||||
* in this page.
|
||||
*/
|
||||
|
||||
//--><!]]>
|
||||
</script>
|
||||
<script src="{{ url_for("static", filename="js/particles.js") }}" referrerpolicy="no-referrer" defer></script>
|
||||
<script src="{{ url_for("static", filename="js/rc4.js") }}" referrerpolicy="no-referrer" defer></script>
|
||||
{% endblock %}
|
||||
|
||||
{% block header %}
|
||||
<h1>Thanks to my supporters!</h1>
|
||||
|
||||
<p>
|
||||
Sometimes I get donations on <a href="/xmr">XMR</a> (OpenAlias: xmr@ari.lt) or <a href="/btc">BTC</a> (OpenAlias: btc@ari.lt). <b>Thanks to everyone donating!</b> I appriciate it a lot.
|
||||
If you donate you can specify a message/url/whatever to add to this page, send it to <a href="mailto:ari@ari.lt">ari@ari.lt</a> 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:
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li>2023/11/24: Casey, my best friend: <b>12 euro</b> (FIAT)</li>
|
||||
<li>2023/12/26: <a href="https://cabbagecorp.nl/">break1146</a> on PayPal: <b>5 euro</b> (FIAT) | <b>"Some moneyz💜"</b></li>
|
||||
<li>2024/06/17: <b>0.0169 XMR</b> (3 euro at the time) | <b>"amogus donation"</b> - <a href="https://themcgovern.net/">mcneb10</a></li>
|
||||
<li>2023/11/30: Mario on PayPal: <b>0.80 euro</b> (42 cents after fees, answer to life!) (FIAT)</li>
|
||||
<li>2024/05/05: <b>0.0019 XMR</b> (23 euro cents at the time)</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
Thanks to all of you for the support! It means a lot to me even if it's 1 cent <3
|
||||
</p>
|
||||
{% endblock %}
|
Loading…
Add table
Reference in a new issue