1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
Files
checktheroads-hyperglass/hyperglass/render/templates/errortext.html.j2
checktheroads d84b547d77 💄 Bulma > Bootstrap
2019-08-07 11:09:18 -07:00

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