2024-05-16 03:38:27 -04:00
include ./_mixins/foot_scripts
2022-03-03 11:28:03 -05:00
doctype html
html(
lang=(currentLngCode || 'en')
2022-10-12 10:19:18 -04:00
class=(fixedSizeDocument ? 'fixed-size-document' : undefined)
2022-03-03 11:28:03 -05:00
)
- metadata = metadata || {}
2024-05-29 06:06:20 -04:00
- let bootstrap5PageStatus = 'disabled' // One of 'disabled', 'enabled', and 'queryStringOnly'
2024-10-11 05:31:49 -04:00
- let bootstrap5PageSplitTest = '' // Limits Bootstrap 5 usage on this page to users with an assignment of "enabled" for the specified split test. If left empty and bootstrap5PageStatus is "enabled", the page always uses Bootstrap 5.
2024-09-16 11:05:13 -04:00
- let isWebsiteRedesign = false
2022-03-03 11:28:03 -05:00
block entrypointVar
block vars
head
include ./_metadata.pug
2024-06-25 06:17:25 -04:00
2024-10-11 05:31:49 -04:00
- const bootstrapVersion = bootstrap5PageStatus !== 'disabled' && (bootstrap5Override || (bootstrap5PageStatus === 'enabled' && (bootstrap5PageSplitTest === '' || splitTestVariants[bootstrap5PageSplitTest] === 'enabled'))) ? 5 : 3
2024-05-30 09:41:53 -04:00
- const ieeeStylesheetEnabled = splitTestVariants?.['ieee-stylesheet'] !== 'disabled'
2022-03-03 11:28:03 -05:00
//- Stylesheet
2024-05-30 09:41:53 -04:00
link(rel='stylesheet', href=buildCssPath(getCssThemeModifier(userSettings, brandVariation, ieeeStylesheetEnabled), bootstrapVersion), id="main-stylesheet")
2022-03-03 11:28:03 -05:00
block css
each file in entrypointStyles(entrypoint)
link(rel='stylesheet', href=file)
block _headLinks
2024-06-25 06:17:25 -04:00
if (typeof suppressRelAlternateLinks == "undefined")
2024-01-31 06:28:31 -05:00
if settings.i18n.subdomainLang
each subdomainDetails in settings.i18n.subdomainLang
if !subdomainDetails.hide
2024-06-25 06:17:25 -04:00
link(rel="alternate", href=subdomainDetails.url + currentUrl, hreflang=subdomainDetails.lngCode)
2024-01-12 05:09:03 -05:00
if (entrypoint !== 'marketing')
link(rel="preload", href=buildJsPath(currentLngCode + "-json.js"), as="script", nonce=scriptNonce)
2022-03-03 11:28:03 -05:00
//- Scripts
2024-06-25 06:17:25 -04:00
if (typeof suppressGoogleAnalytics == "undefined")
2024-04-18 05:58:57 -04:00
include _google_analytics
2022-03-03 11:28:03 -05:00
block meta
meta(name="ol-csrfToken" content=csrfToken)
//- Configure dynamically loaded assets (via webpack) to be downloaded from CDN
//- See: https://webpack.js.org/guides/public-path/#on-the-fly
meta(name="ol-baseAssetPath" content=buildBaseAssetPath())
2024-02-08 04:34:07 -05:00
meta(name="ol-mathJaxPath" content=mathJaxPath)
2024-10-02 04:25:02 -04:00
meta(name="ol-dictionariesRoot" content=dictionariesRoot)
2022-03-03 11:28:03 -05:00
meta(name="ol-usersEmail" content=getUserEmail())
meta(name="ol-ab" data-type="json" content={})
meta(name="ol-user_id" content=getLoggedInUserId())
//- Internationalisation settings
meta(name="ol-i18n" data-type="json" content={
currentLangCode: currentLngCode
})
//- Expose some settings globally to the frontend
meta(name="ol-ExposedSettings" data-type="json" content=ExposedSettings)
meta(name="ol-splitTestVariants" data-type="json" content=splitTestVariants || {})
2022-07-25 08:33:39 -04:00
meta(name="ol-splitTestInfo" data-type="json" content=splitTestInfo || {})
2022-03-03 11:28:03 -05:00
2024-06-25 06:17:25 -04:00
if (typeof settings.algolia != "undefined")
2022-03-03 11:28:03 -05:00
meta(name="ol-algolia" data-type="json" content={
appId: settings.algolia.app_id,
apiKey: settings.algolia.read_only_api_key,
indexes: settings.algolia.indexes
})
2023-07-20 06:14:21 -04:00
meta(name="ol-isManagedAccount" data-type="boolean" content=isManagedAccount)
2023-07-14 05:12:12 -04:00
each restriction in userRestrictions || []
meta(name='ol-cannot-' + restriction data-type="boolean" content=true)
2024-02-14 10:04:08 -05:00
meta(name="ol-bootstrapVersion" data-type="json" content=bootstrapVersion)
2023-07-14 05:12:12 -04:00
2022-03-03 11:28:03 -05:00
block head-scripts
2024-09-16 11:05:13 -04:00
body(class={
'thin-footer': showThinFooter,
'website-redesign': isWebsiteRedesign === true
}, data-theme="default")
2022-03-03 11:28:03 -05:00
if(settings.recaptcha && settings.recaptcha.siteKeyV3)
2024-06-25 06:17:25 -04:00
script(type="text/javascript", nonce=scriptNonce, src="https://www.recaptcha.net/recaptcha/api.js?render=" + settings.recaptcha.siteKeyV3, defer=deferScripts)
2022-03-03 11:28:03 -05:00
2024-06-25 06:17:25 -04:00
if (typeof suppressSkipToContent == "undefined")
2022-03-03 11:28:03 -05:00
a(class="skip-to-content" href="#main-content") #{translate('skip_to_content')}
block body
2024-05-24 04:52:00 -04:00
if (settings.devToolbar.enabled)
2023-11-23 08:55:06 -05:00
div#dev-toolbar
2022-03-03 11:28:03 -05:00
block foot-scripts
2024-05-16 03:38:27 -04:00
+foot-scripts
2023-03-13 10:11:53 -04:00
script(type="text/javascript", nonce=scriptNonce).
2023-11-27 06:26:06 -05:00
window.addEventListener('DOMContentLoaded', function() {
//- Look for bundle
var cdnBlocked = typeof Frontend === 'undefined'
//- Prevent loops
var noCdnAlreadyInUrl = window.location.href.indexOf("nocdn=true") != -1
if (cdnBlocked && !noCdnAlreadyInUrl && navigator.userAgent.indexOf("Googlebot") == -1) {
//- Set query param, server will not set CDN url
window.location.search += "&nocdn=true";
}
})