2022-03-03 11:28:03 -05:00
|
|
|
extends ./layout-base
|
|
|
|
|
2021-09-24 05:22:37 -04:00
|
|
|
include ./_mixins/formMessages
|
2024-05-15 05:43:32 -04:00
|
|
|
include ./_mixins/bootstrap_js
|
2021-09-24 05:22:37 -04:00
|
|
|
|
2022-03-03 11:28:03 -05:00
|
|
|
block entrypointVar
|
2021-09-08 05:26:18 -04:00
|
|
|
- entrypoint = 'marketing'
|
|
|
|
|
2022-03-03 11:28:03 -05:00
|
|
|
block body
|
2024-05-28 07:40:05 -04:00
|
|
|
if (typeof suppressNavbar === "undefined")
|
|
|
|
if bootstrapVersion === 5
|
|
|
|
include layout/navbar-marketing-bootstrap-5
|
|
|
|
else
|
|
|
|
include layout/navbar-marketing
|
2021-09-08 05:26:18 -04:00
|
|
|
|
2022-03-03 11:28:03 -05:00
|
|
|
block content
|
2021-09-08 05:26:18 -04:00
|
|
|
|
2024-05-28 07:40:05 -04:00
|
|
|
if (typeof suppressFooter === "undefined")
|
2022-03-03 11:28:03 -05:00
|
|
|
if showThinFooter
|
|
|
|
include layout/footer-marketing
|
2021-09-08 05:26:18 -04:00
|
|
|
else
|
2022-03-03 11:28:03 -05:00
|
|
|
include layout/fat-footer
|
2021-09-08 05:26:18 -04:00
|
|
|
|
2023-07-17 08:15:36 -04:00
|
|
|
if (typeof(suppressCookieBanner) == 'undefined')
|
2022-03-29 08:12:10 -04:00
|
|
|
include _cookie_banner
|
|
|
|
|
2024-06-03 08:07:10 -04:00
|
|
|
if bootstrapVersion === 5
|
|
|
|
!= moduleIncludes("contactModal-marketing-bootstrap-5", locals)
|
|
|
|
else
|
|
|
|
!= moduleIncludes("contactModal-marketing", locals)
|
2024-05-15 05:43:32 -04:00
|
|
|
|
|
|
|
block prepend foot-scripts
|
|
|
|
+bootstrap-js(bootstrapVersion)
|