14 lines
615 B
HTML
14 lines
615 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h1 class="text-center display-1">About</h1>
|
|
<div class="row justify-content-md-centermt-4">
|
|
<p class="fs-5">
|
|
Lumi2 is free software, licensed under the <a href="https://www.gnu.org/licenses/agpl-3.0.en.html">GNU Affero General Public License Version 3.0</a>.
|
|
The source code is publicly <a href="https://git.skyforest.net/jlobbes/lumi2">available here</a>.
|
|
</p>
|
|
{% if g.is_authenticated %}
|
|
<p class="text-muted fs-5">This instance is running Lumi2 Version {{ config['APP_VERSION'] }}.</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock content %}
|