hero/title-text-trial.html

  1. ---
  2. custom_classes: ""
  3. custom_spacing: "px-5"
  4. ---
  5. {{#
  6. /**
  7. * @name hero/title-text-trial
  8. * @description A partial for a banner with a lead, headline, subheadline, and trial signup
  9. * @see Uses partial {@link form/free-trial}
  10. * @property {string} hero_headline - Main text in the headline
  11. * @property {string} [custom_classes] - Extra classes to apply to the wrapping `section`
  12. * @property {string} [custom_spacing] - Extra classes to apply to the wrapping `section`
  13. * @property {string} [hero_lead_in_title] - Uppercase hero lead in title
  14. * @property {string} [hero_subheadline] - Text below headline
  15. */
  16. #}}
  17. <section class="{{ custom_spacing }} {{ custom_classes }}" {{ if background_image }}style="background-image: url('{{ background_image_asset }}');"{{ /if }}>
  18. <div class="mw-grid mx-auto py-8 m--pt-5">
  19. {{ if hero_lead_in_title }}
  20. <h1 class="lead-in-1 mb-4 mt-10 tt-upper ta-center white body">{{ hero_lead_in_title }}</h1>
  21. {{ /if }}
  22. <div class="title-4 m--title-6 l--title-7 fw-700 mb-0 ta-center white m--mt-4 {{ hero_headline_classes }}">{{ hero_headline | widont }}</div>
  23. {{ if hero_subheadline }}
  24. <div class="body-4 m--body-5 mt-5 mb-8 ta-center white px-2 m--px-11 mb-8 m--mb-9 {{ hero_subheadline_classes }}">{{ hero_subheadline }}</div>
  25. {{ /if }}
  26. <div class="mw-32 mx-auto">
  27. {{ partial:form/free-trial }}
  28. <p class="ta-center body-2 fw-500 white mt-5">{{ global_free_trial_form:global_free_trial_banner_copy }}</p>
  29. </div>
  30. </div>
  31. </section>