33 lines
777 B
HTML
33 lines
777 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block body %}
|
||
|
|
||
|
<div style="max-width:95vw;width:fit-content;margin:0 auto;text-align:center">
|
||
|
<h1>Authors</h1>
|
||
|
<p>
|
||
|
blek! File is free and Open Source software, which is released under the
|
||
|
<a href="/license">
|
||
|
GPLv3{# -#}
|
||
|
</a>
|
||
|
license.
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
The original program is written by blek! <me@blek.codes>, and is maintained solely by me.
|
||
|
<br/>
|
||
|
Any future contributors will be listed here.
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
PRs are welcome -
|
||
|
<a href="https://git.blek.codes/blek/bfile">
|
||
|
Take a look at the git repo
|
||
|
</a>
|
||
|
</p>
|
||
|
|
||
|
<a style='display:block' class="btn btn-fill" href='/'>
|
||
|
Go back
|
||
|
</a>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|