overleaf/services/web/app/views/layout.pug

116 lines
3.6 KiB
Text
Raw Normal View History

2014-06-04 11:28:20 -04:00
doctype html
html(
lang=(currentLngCode || 'en')
)
- metadata = metadata || {}
2014-06-21 17:20:37 -04:00
block vars
2014-02-12 05:23:40 -05:00
head
include ./_metadata.pug
2015-03-10 14:56:46 -04:00
script(type="text/javascript").
// Stop superfish from loading
window.similarproducts = true
style [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {display: none !important; display: none; }
2014-08-24 12:07:40 -04:00
-if (typeof(gaExperiments) != "undefined")
|!{gaExperiments}
2018-05-21 18:31:19 -04:00
//- Stylesheet
link(rel='stylesheet', href=buildCssPath(getCssThemeModifier(userSettings, brandVariation), { hashedPath: true }), id="main-stylesheet")
2014-02-12 05:23:40 -05:00
2017-01-31 10:43:53 -05:00
block _headLinks
if settings.i18n.subdomainLang
each subdomainDetails in settings.i18n.subdomainLang
if !subdomainDetails.hide
link(rel="alternate", href=subdomainDetails.url+currentUrl, hreflang=subdomainDetails.lngCode)
2018-05-21 18:31:19 -04:00
//- Scripts
//- Google Analytics
2014-02-12 05:23:40 -05:00
- if (typeof(gaToken) != "undefined")
2014-06-04 11:28:20 -04:00
script(type='text/javascript').
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');
2018-03-19 13:06:02 -04:00
ga('create', '#{gaToken}', '#{settings.cookieDomain.replace(/^\./, "")}');
2014-03-05 10:45:24 -05:00
ga('send', 'pageview');
- else
2014-06-11 09:52:23 -04:00
script(type='text/javascript').
window.ga = function() { console.log("would send to GA", arguments) };
2018-05-21 18:31:19 -04:00
2014-06-11 09:52:23 -04:00
script(type="text/javascript").
2014-02-12 05:23:40 -05:00
window.csrfToken = "#{csrfToken}";
2018-05-21 18:31:19 -04:00
2017-12-14 07:11:13 -05:00
script(src=buildJsPath("libs/jquery-1.11.1.min.js"))
2016-08-19 06:05:35 -04:00
script(type="text/javascript").
var noCdnKey = "nocdn=true"
var cdnBlocked = typeof jQuery === 'undefined'
var noCdnAlreadyInUrl = window.location.href.indexOf(noCdnKey) != -1 //prevent loops
if (cdnBlocked && !noCdnAlreadyInUrl && navigator.userAgent.indexOf("Googlebot") == -1) {
2016-08-19 06:05:35 -04:00
window.location.search += '&'+noCdnKey;
}
block head-scripts
2017-12-14 07:11:13 -05:00
script(src=buildJsPath("libs/angular-1.6.4.min.js"))
2016-08-19 06:05:35 -04:00
script.
window.sharelatex = {
siteUrl: '#{settings.siteUrl}',
wsUrl: '#{settings.wsUrl}',
};
window.systemMessages = !{StringHelper.stringifyJsonForScript(systemMessages)};
2016-03-02 10:29:52 -05:00
window.ab = {};
window.user_id = '#{getLoggedInUserId()}';
window.ExposedSettings = JSON.parse('!{StringHelper.stringifyJsonForScript(ExposedSettings)}');
2016-03-02 10:29:52 -05:00
- if (typeof(settings.algolia) != "undefined")
script.
window.sharelatex.algolia = {
app_id:'#{settings.algolia.app_id}',
api_key:'#{settings.algolia.read_only_api_key}',
indexes:!{StringHelper.stringifyJsonForScript(settings.algolia.indexes)}
}
2014-08-22 08:10:32 -04:00
- if (typeof(settings.templates) != "undefined")
script.
window.sharelatex.templates = {
2014-08-22 08:10:32 -04:00
user_id : '!{settings.templates.user_id}',
cdnDomain : '!{settings.templates.cdnDomain}',
indexName : '!{settings.templates.indexName}'
}
2014-06-17 11:36:08 -04:00
body
if(settings.recaptcha)
if (settings.recaptcha.siteKeyV3)
script(src="https://www.google.com/recaptcha/api.js?render="+settings.recaptcha.siteKeyV3)
else
script(src="https://www.google.com/recaptcha/api.js?render=explicit")
div(
id="recaptcha"
class="g-recaptcha"
data-sitekey=settings.recaptcha.siteKey
data-size="invisible"
data-badge="inline"
)
2014-06-21 17:20:37 -04:00
- if(typeof(suppressNavbar) == "undefined")
include layout/navbar
block content
div(ng-controller="AbTestController")
2014-06-21 17:20:37 -04:00
- if(typeof(suppressFooter) == "undefined")
include layout/footer
2014-06-17 11:36:08 -04:00
2018-05-23 17:02:02 -04:00
!= moduleIncludes("contactModal", locals)
include v1-tooltip
2016-03-02 10:29:52 -05:00
block foot-scripts
script(src=buildJsPath('libraries.js'))
script(src=buildJsPath('main.js'))