atst/templates/error.html
leigh-mil 68c7a70082 Set max width on error page and include Last login on error page
- 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
2020-02-04 16:13:07 -05:00

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 %}