Breaker

The Breaker component displays a title, button, summary text, an optional image.
The two variations of the breaker depend on whether an image is uploaded or not. If no image is provided the text and CTA are displayed in the middle of the breaker. When an image is provided, the image is displayed in place of the text and CTA and these are then moved down below the blue background.

Goizueta Faculty

Industry Leaders & Academic Innovators

Members of our faculty have a wealth of experience in industry and the classroom. They push our students to think bigger, dig deeper, and go beyond.

Goizueta Faculty

Industry Leaders & Academic Innovators

Members of our faculty have a wealth of experience in industry and the classroom. They push our students to think bigger, dig deeper, and go beyond.
Placeholder Image

Goizueta Faculty

Industry Leaders & Academic Innovators

Members of our faculty have a wealth of experience in industry and the classroom. They push our students to think bigger, dig deeper, and go beyond.
Markup Details
                            {# Breaker with no image and 2 CTAs. #}
<section style="margin-top: 100px;">
  {% include '@components/breaker/breaker.twig' with {
    "heading": item_no_image.heading,
    "sub_heading": item_no_image.sub_heading,
    "text": item_no_image.text,
    "cta_1": item_no_image.cta_1,
    "cta_2": item_no_image.cta_2
  } only %}
</section>

{# Breaker with image and 2 CTAs. #}
<section style="margin-top: 100px;">
  {% include '@components/breaker/breaker.twig' with {
    "heading": item_with_image.heading,
    "sub_heading": item_with_image.sub_heading,
    "text": item_with_image.text,
    "image": item_with_image.image,
    "cta_1": item_with_image.cta_1,
    "cta_2": item_with_image.cta_2
  } only %}
</section>

{# Breaker with video and custom background and 1 CTA. #}
<section style="margin-top: 100px;">
  {% include '@components/breaker/breaker.twig' with {
    "heading": item_with_image.heading,
    "sub_heading": item_with_image.sub_heading,
    "text": item_with_image.text,
    "video": item_with_image.video,
    "cta_1": item_with_image.cta_1
  } only %}
</section>