mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-25 02:00:07 +02:00

Implement React cookie banner on project dashboard GitOrigin-RevId: 95d2778d7ce7cb3054a06b06486b815a3453a623
36 lines
822 B
Text
36 lines
822 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
|
|
if bootstrapVersion === 5
|
|
include layout/thin-footer-bootstrap-5
|
|
else
|
|
include layout/thin-footer
|
|
else
|
|
include layout/fat-footer
|
|
|
|
if typeof suppressPugCookieBanner == '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)
|