canaille-globuzma/canaille/templates/about.html

24 lines
844 B
HTML
Raw Normal View History

{% extends theme('base.html') %}
2020-11-13 09:45:01 +00:00
{% import 'fomanticui.j2' as sui %}
{% block content %}
<div class="ui clearing segment">
2021-05-24 15:43:15 +00:00
<a href="{{ url_for('account.index') }}">
2020-11-13 09:45:01 +00:00
<img class="ui tiny centered image" src="/static/img/canaille-head.png" alt="{{ website_name }}">
</a>
<h2 class="ui center aligned header">
<div class="content">
{{ _("About canaille") }}
</div>
<div class="sub header">{% trans %}Free and open-source identity provider.{% endtrans %}</div>
</h2>
<p style="text-align: center">
{{ gettext("Version %(version)s", version=version) }} ·
<a href="https://gitlab.com/yaal/canaille">{% trans %}Source code{% endtrans %}</a> ·
<a href="https://canaille.readthedocs.io">{% trans %}Documentation{% endtrans %}</a>
</p>
</div>
{% endblock %}