open-law/app/templates/error.html

14 lines
310 B
HTML
Raw Normal View History

2023-04-20 13:10:16 +00:00
{% extends "base.html" %}
<!-- prettier-ignore -->
{% block content %}
<div class="jumbotron my-4">
<div class="text-center">
<!-- prettier-ignore -->
<h1>{{ '{} - {}'.format(error.code, error.name) }}</h1>
<p>{{ error.description }}.</p>
</div>
</div>
<!-- prettier-ignore -->
{% endblock %}