seitime-frappe/frappe/website/web_template/hero/hero.html
2020-06-12 13:05:31 +05:30

24 lines
528 B
HTML

<div class="hero-content">
<h1>
{{ title }}
</h1>
{%- if subtitle -%}
<p class="hero-subtitle">
{{ subtitle }}
</p>
{%- endif -%}
{%- if primary_action or secondary_action -%}
<div>
{%- if primary_action -%}
<a class="btn btn-lg btn-primary" href="{{ primary_action }}">
{{ primary_action_label }}
</a>
{%- endif -%}
{%- if secondary_action -%}
<a class="btn btn-lg btn-primary-light" href="{{ secondary_action }}">
{{ secondary_action_label }}
</a>
{%- endif -%}
</div>
{%- endif -%}
</div>