atst/templates/error.html
leigh-mil 572c2e7604 Standardize styling for hr elements and remove custom hr styling and classes that were no longer needed.
Fix styling on a few hr elements that looked wrong after global style was applied
2019-10-09 13:07:52 -04:00

32 lines
691 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__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 class="panel__body">
<hr>
<p>
{{ "common.lorem" | translate }}
</p>
<p>
<a href="#">More lorem</a>
</p>
</div>
</main>
{% endblock %}