move call to action vars to be scoped

This commit is contained in:
2023-12-29 10:18:03 -06:00
parent 04f860e06a
commit b675961b9c
2 changed files with 21 additions and 19 deletions

View File

@@ -11,16 +11,16 @@
- text | yes | none
... (etc)
#}-->
{% if active | default(false) %}
{% if call_to_action.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>
<h1 class="fw-light">{{ call_to_action.header }}</h1>
<p class="lead text-body-secondary">{{ call_to_action.lead_text }}</p>
{% if action_buttons %}
{% if call_to_action.buttons %}
<p>
{% for button in action_buttons %}
{% for button in call_to_action.buttons %}
<a
href="{{ button.href | default('#') }}"
class="btn btn-{{ button.theme | default('primary') }} my-2 d-inline-flex"