canaille-globuzma/canaille/templates/core/about.html
Éloi Rivard fe8929d992
refactor: move templates in a common directory
without this, theming was broken because it needs one single directory
for templates.
2024-12-19 00:17:03 +01:00

28 lines
1.1 KiB
HTML

{% extends theme('base.html') %}
{% import 'macro/form.html' as fui %}
{%- block title -%}
{%- trans -%}About Canaille{%- endtrans -%}
{%- endblock -%}
{% block content %}
<div class="ui clearing segment">
<a href="{{ url_for('core.account.index') }}">
<img class="ui tiny centered image" src="{{ url_for("static", filename="img/canaille-head.webp") }}" 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">
<a href="https://pypi.org/project/canaille/">{% trans %}Version {{ version }}{% endtrans %}</a> ·
<a href="https://canaille.yaal.coop">{% trans %}Homepage{% endtrans %}</a> ·
<a href="https://canaille.readthedocs.io">{% trans %}Documentation{% endtrans %}</a> ·
<a href="https://gitlab.com/yaal/canaille">{% trans %}Source code{% endtrans %}</a>
</p>
</div>
{% endblock %}