{% comment %} Renders a header (title and description) that is usually the same accross sections Accepts: - class: {String} (Optional) An optional class (or classes) to apply to header element Usage: {% render 'section-header' %} {% endcomment %} {% if section.settings.header_title != blank or section.settings.header_description != blank %}
{% unless section.settings.header_title == blank %}

{{ section.settings.header_title }}

{% endunless %} {% unless section.settings.header_description == blank %}
{{ section.settings.header_description }}
{% endunless %}
{% endif %}