mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-10 22:50:46 +02:00
a3c579ad43
Implement thin footer in Bootstrap 5 GitOrigin-RevId: c45f63b3d2536e6266eb55cc95df11b53a6b77ec
30 lines
719 B
Plaintext
30 lines
719 B
Plaintext
extends ./layout-base
|
|
|
|
include ./_mixins/formMessages
|
|
include ./_mixins/bootstrap_js
|
|
|
|
block entrypointVar
|
|
- entrypoint = 'marketing'
|
|
- bootstrap5PageStatus = 'enabled' // One of 'disabled', 'enabled', and 'queryStringOnly'
|
|
- isWebsiteRedesign = true
|
|
|
|
block body
|
|
if (typeof(suppressNavbar) == "undefined")
|
|
include layout/navbar-marketing-bootstrap-5
|
|
|
|
block content
|
|
|
|
if (typeof(suppressFooter) == "undefined")
|
|
if showThinFooter
|
|
include layout/thin-footer-bootstrap-5
|
|
else
|
|
include layout/fat-footer-website-redesign
|
|
|
|
if (typeof(suppressCookieBanner) == 'undefined')
|
|
include _cookie_banner
|
|
|
|
!= moduleIncludes("contactModal-marketing-bootstrap-5", locals)
|
|
|
|
block prepend foot-scripts
|
|
+bootstrap-js(5)
|