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
2019-07-29 22:13:11 -07:00

12 lines
433 B
Django/Jinja

{% macro errortext(title, subtitle, button, size_title="h1", size_subtitle="h3") -%}
<div class="ui content container">
<{{ size_title }} class="ui header">{{ title }}
</{{ size_title }}>
<{{ size_subtitle }} class="ui header">{{ subtitle }}</{{ size_subtitle }}>
<br>
<a href="/"><button class="ui basic small button">
<i class="angle left icon"></i>
{{ button }}
</button></a>
</div>
{%- endmacro %}