22 lines
434 B
HTML
22 lines
434 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block title %}
|
|
About
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<br>
|
|
<h1>About</h1>
|
|
<br>
|
|
<footer class="small text-center text-muted" style="word-wrap: break-word;">
|
|
Special thanks to:<br><br>
|
|
ntegan1<br>
|
|
royjr<br>
|
|
AlexandreSato<br>
|
|
actuallylemoncurd<br>
|
|
sunnyhaibin<br>
|
|
dragonpilot<br>
|
|
chatgpt<br>
|
|
</footer>
|
|
{% endblock %}
|