- Updated error_base template so that it contained the Root Vue component, which was the reason that the last login was not previously displaying - Deleted unused css - Created css variable max-page-width for use on the error page, topbar, and other full width elements
25 lines
552 B
HTML
25 lines
552 B
HTML
{% extends "error_base.html" %}
|
|
|
|
{% from "components/icon.html" import Icon %}
|
|
|
|
{% block content %}
|
|
|
|
<main class="usa-section usa-content error-page">
|
|
<div class="panel">
|
|
<div class="panel__heading">
|
|
{{ Icon('cloud', classes="icon--red icon--large")}}
|
|
<hr>
|
|
<h1>{{ code }} - {{ message }}</h1>
|
|
<p>
|
|
{% if code == 404 -%}
|
|
{{ "errors.not_found_sub" | translate }}
|
|
{% else %}
|
|
{{ "errors.default_sub" | translate }}
|
|
{%- endif %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
{% endblock %}
|