Scroller Section
Section of Full-page scrolling content.
- Markup Details
-
{{ attach_library('goizueta_theme/scroller-section') }} {% set classes="section scroller-section" %} {% if modifier_classes %} {% set classes = classes ~ " " ~ modifier_classes %} {% endif %} {% set data_attrs = background_color ? ' data-background-color="' ~ background_color ~ '"' : '' %} {% if offset_percentage %} {% set data_attrs = data_attrs ~ ' data-percentage="' ~ offset_percentage ~ '"' %} {% endif %} {% if centered %} {% set data_attrs = data_attrs ~ ' data-centered="' ~ centered ~ '"' %} {% endif %} {% if anchor %} {% set data_attrs = data_attrs ~ ' data-anchor="' ~ anchor ~ '"' %} {% endif %} <section class="{{ classes|raw }}"{{ data_attrs|raw }}> {{ content }} </section>