mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-26 13:31:02 +00:00
16 lines
246 B
Text
16 lines
246 B
Text
|
{% extends "base" %}
|
||
|
|
||
|
{% block title %}
|
||
|
{{ error_message }}
|
||
|
{% endblock title %}
|
||
|
|
||
|
{% block content %}
|
||
|
<main class="error">
|
||
|
{% block error %}
|
||
|
{% endblock error %}
|
||
|
<p>
|
||
|
{{ error_message }}
|
||
|
</p>
|
||
|
</main>
|
||
|
{% endblock content %}
|