15 lines
459 B
Twig
15 lines
459 B
Twig
<footer class="end">
|
|
<p>
|
|
© <span class="creation-date">2022
|
|
<!-- check if the current year is the same as the creation year -->
|
|
{% set year = "now" | date("Y") %}
|
|
{% if year != "2022" %}
|
|
- {{ year }}
|
|
{% endif %}
|
|
</span>
|
|
<a href="https://samuel.ortion.fr/">Samuel ORTION</a>
|
|
</p>
|
|
<p class="version">
|
|
version: <span class="version-number">v</span>
|
|
</p>
|
|
</footer> |