ultimate-jekyll-manager 0.0.148 → 0.0.149
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -346,8 +346,10 @@ cta:
|
|
|
346
346
|
{% capture hero_cta_buttons %}
|
|
347
347
|
{% assign primary_btn_class = page.resolved.hero.primary_button.class | default: "btn-adaptive" %}
|
|
348
348
|
{% assign secondary_btn_class = page.resolved.hero.secondary_button.class | default: "btn-outline-adaptive" %}
|
|
349
|
-
{% assign show_primary = page.resolved.hero.primary_button.enabled
|
|
350
|
-
{% assign show_secondary = page.resolved.hero.secondary_button.enabled
|
|
349
|
+
{% assign show_primary = page.resolved.hero.primary_button.enabled %}
|
|
350
|
+
{% assign show_secondary = page.resolved.hero.secondary_button.enabled %}
|
|
351
|
+
{% if show_primary == nil %}{% assign show_primary = true %}{% endif %}
|
|
352
|
+
{% if show_secondary == nil %}{% assign show_secondary = true %}{% endif %}
|
|
351
353
|
{% if show_primary or show_secondary %}
|
|
352
354
|
<div class="d-flex flex-row flex-wrap gap-3 justify-content-center {% if is_side_layout %}justify-content-lg-start{% endif %}">
|
|
353
355
|
{% if show_primary %}
|