forked from Github-Mirrors/canaille
23 lines
910 B
HTML
23 lines
910 B
HTML
{% extends theme('base.html') %}
|
|
{% import 'fomanticui.html' as sui %}
|
|
|
|
{% block content %}
|
|
<div class="ui clearing segment">
|
|
<a href="{{ url_for('account.index') }}">
|
|
<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 %}
|