nyxask/app/templates/about.j2

25 lines
754 B
Text
Raw Normal View History

2025-03-15 02:30:25 -05:00
{% 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>
2025-03-15 03:15:45 -05:00
NyxAsk version {{ version }} (commit TODO)
2025-03-15 02:30:25 -05:00
</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>