bfile/filed/templates/authors.html

54 lines
1.9 KiB
HTML
Raw Normal View History

2023-10-13 14:38:21 +02:00
{% extends "base.html" %}
{% block head %}
<link rel="stylesheet" href="/mobile-hide.css" />
{% endblock %}
2023-10-13 14:38:21 +02:00
{% block body %}
2023-10-13 14:38:21 +02:00
<div style="max-width:95vw;width:fit-content;margin:30px auto">
<p style="text-align:center" class="mobile-only">
<img src="/android-chrome-192x192.png" width="256" height="256" />
2023-10-13 14:38:21 +02:00
</p>
<table>
<tbody>
<tr>
<td style="vertical-align: middle" class="mobile-hide">
<img src="/android-chrome-192x192.png" width="192" height="192" />
</td>
<td style="vertical-align: middle;padding-left: 12px;">
<h1 style="margin-left:0">Authors</h1>
<p>
{%- if conf.brand.instance_name != "blek! File" -%}
{{ conf.brand.instance_name }} is powered by
{%- endif -%}
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! &lt;me@blek.codes&gt;, 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>
2023-10-21 04:26:05 +02:00
<a style='display:block;width:calc(100% - 32px)' class="btn btn-fill" href='/'>
Go back
</a>
</td>
</tr>
</tbody>
</table>
2023-10-13 14:38:21 +02:00
</div>
{% endblock %}