mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-02-01 06:49:23 +00:00
12 lines
No EOL
433 B
Django/Jinja
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 %} |