lookingglass/hyperglass/render/templates/errortext.html.j2
2019-09-04 01:29:49 -07:00

11 lines
No EOL
398 B
HTML

{% macro errortext(title, subtitle, button) -%}
<div class="container-fluid d-flex w-100 h-100 p-3 mx-auto flex-column">
<div class="jumbotron bg-danger">
<h1 class="display-4">{{ title }}</h1>
<p class="lead">{{ subtitle }}</p>
<hr class="my-4">
<a class="btn btn-outline-danger btn-lg" href="/" role="button">{{ button }}</a>
</div>
</div>
{%- endmacro %}