seitime-frappe/frappe/website/web_template/hero/hero.html

26 lines
702 B
HTML

<div class="hero {{ 'align-center' if align == 'Center' else '' }}">
<div class="hero-content">
{%- if title -%}
<h1 class="hero-title">{{ _(title) }}</h1>
{%- endif -%}
{%- if subtitle -%}
<p class="hero-subtitle">
{{ _(subtitle) }}
</p>
{%- endif -%}
{%- if primary_action or secondary_action -%}
<div class="hero-buttons">
{%- if primary_action -%}
<a class="btn btn-lg btn-dark" href="{{ primary_action }}">
{{ _(primary_action_label) }}
</a>
{%- endif -%}
{%- if secondary_action -%}
<a class="btn btn-lg btn-light ml-3" href="{{ secondary_action }}">
{{ _(secondary_action_label) }}
</a>
{%- endif -%}
</div>
{%- endif -%}
</div>
</div>