mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-01 08:13:14 +01:00
31 lines
821 B
Smarty
31 lines
821 B
Smarty
|
|
||
|
<div style="padding-bottom: 3em">
|
||
|
|
||
|
{% if config.site_name %}
|
||
|
<h1>{{ config.site_name }}</h1>
|
||
|
{% endif %}
|
||
|
|
||
|
{% if config.site_description %}
|
||
|
<h2>{{ config.site_description }}</h2>
|
||
|
{% endif %}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<p>
|
||
|
<small>
|
||
|
Auteur: Benjamin Renard
|
||
|
(<a href="mailto:brenard@easter-eggs.com">brenard@easter-eggs.com</a> /
|
||
|
<a href="mailto:brenard@zionetrix.net">brenard@zionetrix.net</a>)
|
||
|
</small><br />
|
||
|
|
||
|
{% if config.site_url %}
|
||
|
<small>Site web: <a href="{{ config.site_url }}">{{ config.site_url }}</a></small><br />
|
||
|
{% endif %}
|
||
|
{% if config.repo_url %}
|
||
|
<small>Repo: <a href="{{ config.repo_url }}">{{ config.repo_url }}</a></small><br />
|
||
|
{% endif %}
|
||
|
{% if config.copyright %}
|
||
|
<small>{{ config.copyright }}</small><br />
|
||
|
{% endif %}
|
||
|
</p>
|