canaille-globuzma/canaille/templates/core/about.html

37 lines
1.3 KiB
HTML
Raw Normal View History

2024-12-16 17:17:42 +00:00
{#
The 'About' page.
This is an informational page, displaying the project links.
:param version: The current Canaille version.
:type version: :class:`str`
#}
{% extends theme('base.html') %}
2023-03-28 18:37:16 +00:00
{% import 'macro/form.html' as fui %}
2020-11-13 09:45:01 +00:00
{%- block title -%}
{%- trans -%}About Canaille{%- endtrans -%}
{%- endblock -%}
2023-03-10 00:02:36 +00:00
2020-11-13 09:45:01 +00:00
{% block content %}
2021-12-20 22:57:27 +00:00
<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 }}">
2021-12-20 22:57:27 +00:00
</a>
2020-11-13 09:45:01 +00:00
2021-12-20 22:57:27 +00:00
<h2 class="ui center aligned header">
<div class="content">
2023-01-30 18:56:58 +00:00
{{ _("About Canaille") }}
2021-12-20 22:57:27 +00:00
</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> ·
2022-11-20 22:18:49 +00:00
<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>
2021-12-20 22:57:27 +00:00
</p>
2020-11-13 09:45:01 +00:00
2021-12-20 22:57:27 +00:00
</div>
2020-11-13 09:45:01 +00:00
{% endblock %}