Skip to documentation content

Generic BOFU Landing Page

All complete examples

Demonstrate Generic BOFU Landing Page.

What this example teaches

  • Compose Generic BOFU Landing Page from reusable section and theme templates
  • Keep the page template thin by including shared partials
  • Thin page shell with minimal header/footer, CTA banner, conversion layout, and FAQs.
  • Keep custom fields on the template that owns them

View this pattern on the live demo site

Files

Bottom-of-funnel landing: home banner plus a conversion form section.

Liquid
{% comment %}
	Bottom-of-funnel generic landing page (decision/conversion stage).
	Clean layout with a focused CTA banner, offer content with conversion form, and FAQs.

	Inputs:
		entity - the landing page article and its custom fields
{% endcomment -%}
{%- include "/_header.liquid" minimal_header_and_footer_content:true no_header_title:true -%}
{%- include "/sections/_home_banner.liquid" min_height:"300px" -%}
{%- include "/sections/_landing_bofu_generic.liquid" section_id:'conversion-form' increment_headinglevel:true -%}
{%- include "/sections/_faqs.liquid" section_class:'container py-5 border-top' -%}
{%- include "/_footer.liquid" minimal_header_and_footer_content:true -%}