2020-01-27 08:53:45 -05:00
|
|
|
|
2014-06-04 11:28:20 -04:00
|
|
|
doctype html
|
2018-11-05 09:02:11 -05:00
|
|
|
html(
|
2019-07-18 10:19:48 -04:00
|
|
|
lang=(currentLngCode || 'en')
|
2018-11-05 09:02:11 -05:00
|
|
|
)
|
2018-06-19 13:57:55 -04:00
|
|
|
- metadata = metadata || {}
|
2021-03-25 10:02:21 -04:00
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
block vars
|
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
head
|
2018-06-19 13:57:55 -04:00
|
|
|
include ./_metadata.pug
|
|
|
|
|
2021-03-24 06:09:43 -04:00
|
|
|
if (typeof(gaExperiments) != "undefined")
|
2014-08-24 12:07:40 -04:00
|
|
|
|!{gaExperiments}
|
2014-08-22 09:20:39 -04:00
|
|
|
|
2018-05-21 18:31:19 -04:00
|
|
|
//- Stylesheet
|
2019-11-28 05:20:22 -05:00
|
|
|
link(rel='stylesheet', href=buildCssPath(getCssThemeModifier(userSettings, brandVariation)), id="main-stylesheet")
|
2021-03-29 07:07:40 -04:00
|
|
|
link(rel='stylesheet', href=buildStylesheetPath("libraries.css"))
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2017-01-31 10:43:53 -05:00
|
|
|
block _headLinks
|
|
|
|
|
2014-08-06 10:35:57 -04:00
|
|
|
if settings.i18n.subdomainLang
|
|
|
|
each subdomainDetails in settings.i18n.subdomainLang
|
2016-05-04 17:00:43 -04:00
|
|
|
if !subdomainDetails.hide
|
|
|
|
link(rel="alternate", href=subdomainDetails.url+currentUrl, hreflang=subdomainDetails.lngCode)
|
2014-08-06 10:05:13 -04:00
|
|
|
|
2018-05-21 18:31:19 -04:00
|
|
|
//- Scripts
|
|
|
|
|
|
|
|
//- Google Analytics
|
2021-03-24 06:09:43 -04:00
|
|
|
if (typeof(gaToken) != "undefined")
|
2021-03-25 10:02:21 -04:00
|
|
|
script(type="text/javascript", nonce=scriptNonce).
|
2014-03-05 10:45:24 -05:00
|
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
2021-03-25 10:02:21 -04:00
|
|
|
script(type="text/javascript", nonce=scriptNonce).
|
2018-03-19 13:06:02 -04:00
|
|
|
ga('create', '#{gaToken}', '#{settings.cookieDomain.replace(/^\./, "")}');
|
2021-05-25 06:23:53 -04:00
|
|
|
ga('set', 'anonymizeIp', true);
|
2014-03-05 10:45:24 -05:00
|
|
|
ga('send', 'pageview');
|
2020-12-02 05:16:28 -05:00
|
|
|
|
|
|
|
try {
|
|
|
|
ga.isBlocked = localStorage.getItem('gaBlocked') === 'true'
|
|
|
|
if (!ga.isBlocked) {
|
|
|
|
window.addEventListener('load', function () {
|
|
|
|
setTimeout(function () {
|
|
|
|
if (!ga.loaded) localStorage.setItem('gaBlocked', 'true')
|
|
|
|
}, 4000)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
} catch (e) {}
|
2019-12-16 05:55:25 -05:00
|
|
|
if gaOptimize === true && typeof(gaOptimizeId) != "undefined"
|
2020-10-20 08:44:40 -04:00
|
|
|
//- Anti-flicker snippet
|
|
|
|
style(type='text/css') .async-hide { opacity: 0 !important}
|
2021-03-25 10:02:21 -04:00
|
|
|
script(type="text/javascript", nonce=scriptNonce).
|
2020-12-02 05:16:28 -05:00
|
|
|
if (!ga.isBlocked) {
|
|
|
|
ga('require', '#{gaOptimizeId}');
|
|
|
|
ga('send', 'event', 'pageview', document.title.substring(0, 499), window.location.href.substring(0, 499));
|
|
|
|
(function(a,s,y,n,c,h,i,d,e){s.className+=' '+y;h.start=1*new Date;
|
|
|
|
h.end=i=function(){s.className=s.className.replace(RegExp(' ?'+y),'')};
|
|
|
|
(a[n]=a[n]||[]).hide=h;setTimeout(function(){i();h.end=null},c);h.timeout=c;
|
|
|
|
})(window,document.documentElement,'async-hide','dataLayer',4000,
|
|
|
|
{'#{gaOptimizeId}':true});
|
|
|
|
}
|
2020-02-05 11:34:10 -05:00
|
|
|
|
2021-03-24 06:09:43 -04:00
|
|
|
else
|
2021-03-25 10:02:21 -04:00
|
|
|
script(type="text/javascript", nonce=scriptNonce).
|
2016-07-12 09:25:04 -04:00
|
|
|
window.ga = function() { console.log("would send to GA", arguments) };
|
2018-05-21 18:31:19 -04:00
|
|
|
|
2021-03-22 05:51:07 -04:00
|
|
|
block meta
|
|
|
|
meta(name="ol-csrfToken" content=csrfToken)
|
2019-12-11 04:53:31 -05:00
|
|
|
//- Configure dynamically loaded assets (via webpack) to be downloaded from CDN
|
|
|
|
//- See: https://webpack.js.org/guides/public-path/#on-the-fly
|
2021-03-22 05:51:07 -04:00
|
|
|
meta(name="ol-baseAssetPath" content=buildBaseAssetPath())
|
|
|
|
|
|
|
|
meta(name="ol-usersEmail" content=getUserEmail())
|
|
|
|
meta(name="ol-sharelatex" data-type="json" content={
|
|
|
|
siteUrl: settings.siteUrl,
|
|
|
|
wsUrl,
|
|
|
|
})
|
|
|
|
meta(name="ol-ab" data-type="json" content={})
|
|
|
|
meta(name="ol-user_id" content=getLoggedInUserId())
|
2020-09-03 05:23:34 -04:00
|
|
|
//- Internationalisation settings
|
2021-03-22 05:51:07 -04:00
|
|
|
meta(name="ol-i18n" data-type="json" content={
|
|
|
|
currentLangCode: currentLngCode
|
|
|
|
})
|
2020-09-03 05:23:34 -04:00
|
|
|
//- Expose some settings globally to the frontend
|
2021-03-22 05:51:07 -04:00
|
|
|
meta(name="ol-ExposedSettings" data-type="json" content=ExposedSettings)
|
|
|
|
|
|
|
|
if (typeof(settings.algolia) != "undefined")
|
2021-05-27 09:50:55 -04:00
|
|
|
meta(name="ol-algolia" data-type="json" content={
|
2021-06-16 08:07:33 -04:00
|
|
|
appId: settings.algolia.app_id,
|
|
|
|
apiKey: settings.algolia.read_only_api_key,
|
2021-03-22 05:51:07 -04:00
|
|
|
indexes: settings.algolia.indexes
|
|
|
|
})
|
|
|
|
|
|
|
|
if (typeof(settings.templates) != "undefined")
|
|
|
|
meta(name="ol-sharelatex.templates" data-type="json" content={
|
|
|
|
user_id : settings.templates.user_id,
|
|
|
|
cdnDomain : settings.templates.cdnDomain,
|
|
|
|
indexName : settings.templates.indexName
|
|
|
|
})
|
2014-07-23 06:29:04 -04:00
|
|
|
|
2021-03-22 05:51:07 -04:00
|
|
|
block head-scripts
|
2017-12-11 13:03:09 -05:00
|
|
|
|
2017-12-14 12:09:11 -05:00
|
|
|
|
2021-03-25 10:02:21 -04:00
|
|
|
body(ng-csp=(cspEnabled ? "no-unsafe-eval" : false))
|
2020-04-02 08:29:57 -04:00
|
|
|
if(settings.recaptcha && settings.recaptcha.siteKeyV3)
|
2021-06-01 04:00:39 -04:00
|
|
|
script(type="text/javascript", nonce=scriptNonce, src="https://www.recaptcha.net/recaptcha/api.js?render="+settings.recaptcha.siteKeyV3)
|
2020-04-02 08:29:57 -04:00
|
|
|
|
2016-03-18 08:55:35 -04:00
|
|
|
|
2021-03-24 06:09:43 -04:00
|
|
|
if (typeof(suppressNavbar) == "undefined")
|
2014-06-21 17:20:37 -04:00
|
|
|
include layout/navbar
|
|
|
|
|
2014-06-17 11:43:33 -04:00
|
|
|
block content
|
2016-10-11 09:30:27 -04:00
|
|
|
|
2021-03-24 06:09:43 -04:00
|
|
|
if (typeof(suppressFooter) == "undefined")
|
2014-06-21 17:20:37 -04:00
|
|
|
include layout/footer
|
2014-06-17 11:36:08 -04:00
|
|
|
|
2018-05-23 17:02:02 -04:00
|
|
|
!= moduleIncludes("contactModal", locals)
|
2016-03-02 10:29:52 -05:00
|
|
|
|
2019-10-16 06:10:54 -04:00
|
|
|
block foot-scripts
|
2021-03-25 10:02:21 -04:00
|
|
|
script(type="text/javascript", nonce=scriptNonce, src=buildJsPath('libraries.js'))
|
|
|
|
script(type="text/javascript", nonce=scriptNonce, src=buildJsPath('main.js'))
|
|
|
|
script(type="text/javascript", nonce=scriptNonce).
|
2019-12-16 10:02:29 -05:00
|
|
|
//- 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";
|
|
|
|
}
|