fix: hide jinja placeholder for title when no value-section with small cta

This commit is contained in:
Antoine Maas 2025-06-20 09:34:02 +00:00
parent 1daad6f7f0
commit 52d686f7e2

View file

@ -1,7 +1,9 @@
<div class="section-cta-container">
<div class="section-small-cta">
<div>
<h3 class="section-title">{{ title or '' }}</h3>
{%- if title -%}
<h2 class="section-title">{{ _(title) }}</h2>
{%- endif -%}
{%- if subtitle -%}
<p class="subtitle">{{ subtitle }}</p>
{%- endif -%}