simple-s3-gallery/templates/call_to_action.html

40 lines
1012 B
HTML

<!--
#~ Var | Required | Default ~#
active | no | false
header | yes | none
lead_text | yes | none
action_buttons (list, optional)
n. (list index)
- href | no | #
- theme | no | primary
- icon | no | none
- text | yes | none
... (etc)
-->
{% if active | default(false) %}
<section class="py-5 text-center container">
<div class="row py-lg-5">
<div class="col-lg-6 col-md-8 mx-auto">
<h1 class="fw-light">{{ header }}</h1>
<p class="lead text-body-secondary">{{ lead_text }}</p>
{% if action_buttons %}
<p>
{% for button in action_buttons %}
<a
href="{{ button.href | default('#') }}"
class="btn btn-{{ button.theme | default('primary') }} my-2 d-inline-flex"
>
{% if button.icon %}
<i class="bi-{{ button.icon }}"></i>
{% endif %}
{{ button.text }}
</a>
{% endfor %}
</p>
{% endif %}
</div>
</div>
</section>
{% endif %}