nyxask/app/templates/about.j2
2025-03-15 02:30:25 -05:00

25 lines
No EOL
762 B
Django/Jinja

{% from 'header.j2' import header_home %}
{% from 'imports.j2' import imports_main %}
<html lang="en">
<head>
<title>{{ instanceBranding }} - Register</title>
{{ imports_main() }}
</head>
<body>
{{ header_home() }}
<div style="text-align:center">
<h1>
NyxAsk at {{ instanceBranding }}
</h1>
<p>
NyxAsk version {{ version }} (commit {{ commit }})
</p>
<p>
Source code: <a href="https://git.everypizza.im/n/nyxask/">https://git.everypizza.im/n/nyxask/</a>
</p>
<p>
Made with <3 by Nyx Tutt. Licensed under the Unlicense.
</p>
</div>
</body>
</html>