[FIX] 404 and 500 page not centered
This commit is contained in:
parent
c1e7c3dd58
commit
98a89508d2
|
@ -1,5 +1,11 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% block title %}Error 404{% endblock %}
|
{% block title %}Error 404{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<img src="https://http.cat/images/404.jpg">
|
<div class="grid gap-4">
|
||||||
|
<div class="row-start-2">
|
||||||
|
<div class="flex justify-center">
|
||||||
|
<img src="https://http.cat/images/404.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% block title %}Error 404{% endblock %}
|
{% block title %}Error 404{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<img src="https://http.cat/images/500.jpg">
|
<div class="grid gap-4">
|
||||||
|
<div class="row-start-2">
|
||||||
|
<div class="flex justify-center">
|
||||||
|
<img src="https://http.cat/images/500.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
Loading…
Reference in a new issue