error pages

This commit is contained in:
Mateusz Gruszczyński
2026-03-02 10:47:28 +01:00
parent 04c14e9f37
commit 6bd4b525b1
4 changed files with 84 additions and 20 deletions

View File

@@ -37,9 +37,13 @@
<footer class="text-center mt-4 py-3">
<small class="text-muted">
© {{ footer.year }} {{ footer.project }} |
Autor:
<a href="{{ footer.owner.url }}" target="_blank" class="text-decoration-none">{{ footer.owner.name }}</a>
© {% if footer %}{{ footer.year }}{% else %}2026{% endif %}
{% if footer %}{{ footer.project }} |{% endif %}
Autor:
<a href="{% if footer %}{{ footer.owner.url }}{% else %}https://linuxiarz.pl{% endif %}"
target="_blank" class="text-decoration-none">
{% if footer %}{{ footer.owner.name }}{% else %}linuxiarz.pl{% endif %}
</a>
{% if footer.version %}| v{{ footer.version }}{% endif %}
</small>
</footer>