mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
c0d920f305
Bootstrap 5 contact us modal GitOrigin-RevId: a4607fab50152109fbe83bc29246b7b4a82539a1
33 lines
750 B
Text
33 lines
750 B
Text
extends ./layout-base
|
|
|
|
include ./_mixins/formMessages
|
|
include ./_mixins/bootstrap_js
|
|
|
|
block entrypointVar
|
|
- entrypoint = 'marketing'
|
|
|
|
block body
|
|
if (typeof suppressNavbar === "undefined")
|
|
if bootstrapVersion === 5
|
|
include layout/navbar-marketing-bootstrap-5
|
|
else
|
|
include layout/navbar-marketing
|
|
|
|
block content
|
|
|
|
if (typeof suppressFooter === "undefined")
|
|
if showThinFooter
|
|
include layout/footer-marketing
|
|
else
|
|
include layout/fat-footer
|
|
|
|
if (typeof(suppressCookieBanner) == 'undefined')
|
|
include _cookie_banner
|
|
|
|
if bootstrapVersion === 5
|
|
!= moduleIncludes("contactModal-marketing-bootstrap-5", locals)
|
|
else
|
|
!= moduleIncludes("contactModal-marketing", locals)
|
|
|
|
block prepend foot-scripts
|
|
+bootstrap-js(bootstrapVersion)
|