lookingglass/hyperglass/render/templates/errortext.html.j2
2019-07-29 22:13:11 -07:00

12 lines
No EOL
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 %}