youyesyet/resources/templates/error.html

14 lines
217 B
HTML

{% extends "base.html" %}
{% block big-links %}
{% endblock %}
{% block content %}
{% if status %}
<h2>Error: {{status}}</h2>
{% endif %}
<hr>
{% if error %}
<p>{{error}}</p>
{% endif %}
{% endblock %}