1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-29 05:19:20 +00:00
thatmattlove-hyperglass/hyperglass/render/templates/errortext.html.j2
2019-08-07 11:09:18 -07:00

11 lines
No EOL
392 B
HTML

{% macro errortext(title, subtitle, button) -%}
<div class="container 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 %}