2022-08-28 12:32:05 -05:00
|
|
|
{%- import "utils.html" as utils with context -%}
|
|
|
|
{% extends "layout.html" %}
|
2022-09-20 13:00:35 -05:00
|
|
|
{% block main_tag %} class="main-flex"{% endblock %}
|
2022-08-28 12:32:05 -05:00
|
|
|
{% block head %}
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-09-16 11:14:50 -05:00
|
|
|
<div class="centered primary-color box">
|
|
|
|
<h1 class="error-title">{{ title | safe }}</h1>
|
2022-08-28 12:32:05 -05:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|