How can I display a full-width banner only on a single page using the Supply theme?

I can only get a full width banner if I move my hero to the header in the “Supply” theme for Shopify

I can get the banner on every page, but I want it ONLY on a single page.

What one line of code to I need to get the following section:

{% section ‘pixelboost-hero-banner’ %}

To the page title

“Affiliate-program”

In the

theme.liquid

Resolved my own problem:

{% if page_title == “Affiliate Program” %}{% section ‘pixboost-hero-banner’ %}{% else %}

{% endif %}