Files
portfolio/templates/errors/error.html.twig
2024-07-16 21:48:09 +00:00

15 lines
382 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Fehler{% endblock %}
{% block body %}
<style>
.example-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; }
.example-wrapper code { background: #F5F5F5; padding: 2px 6px; }
</style>
<div class="example-wrapper">
<h1>Diese Seite existiert nicht</h1>
</div>
{% endblock %}