2014-06-04 11:28:20 -04:00
|
|
|
doctype html
|
2018-11-05 09:02:11 -05:00
|
|
|
html(
|
|
|
|
lang=(currentLngCode || 'en'),
|
|
|
|
itemscope,
|
|
|
|
itemtype='http://schema.org/Product'
|
|
|
|
)
|
2018-06-19 13:57:55 -04:00
|
|
|
- metadata = metadata || {}
|
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
|
|
|
|
|
2015-03-10 14:56:46 -04:00
|
|
|
script(type="text/javascript").
|
2015-02-05 06:23:45 -05:00
|
|
|
// Stop superfish from loading
|
|
|
|
window.similarproducts = true
|
2015-10-14 11:22:32 -04:00
|
|
|
style [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {display: none !important; display: none; }
|
2015-02-05 06:23:45 -05:00
|
|
|
|
2014-08-24 12:07:40 -04:00
|
|
|
-if (typeof(gaExperiments) != "undefined")
|
|
|
|
|!{gaExperiments}
|
2014-08-22 09:20:39 -04:00
|
|
|
|
2018-05-21 18:31:19 -04:00
|
|
|
//- Stylesheet
|
2018-11-22 10:17:10 -05:00
|
|
|
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
|
|
|
|
|
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
|
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');
|
2014-03-14 07:14:02 -04:00
|
|
|
- else
|
2014-06-11 09:52:23 -04:00
|
|
|
script(type='text/javascript').
|
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
|
|
|
|
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
|
2016-09-15 05:21:12 -04:00
|
|
|
if (cdnBlocked && !noCdnAlreadyInUrl && navigator.userAgent.indexOf("Googlebot") == -1) {
|
2016-08-19 06:05:35 -04:00
|
|
|
window.location.search += '&'+noCdnKey;
|
|
|
|
}
|
2016-10-28 05:18:20 -04:00
|
|
|
|
|
|
|
block 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
|
|
|
|
2014-07-23 06:29:04 -04:00
|
|
|
script.
|
|
|
|
window.sharelatex = {
|
|
|
|
siteUrl: '#{settings.siteUrl}',
|
2019-02-06 05:03:33 -05:00
|
|
|
wsUrl: '#{settings.wsUrl}',
|
2015-10-27 06:58:27 -04:00
|
|
|
jsPath: '#{jsPath}',
|
2015-10-27 07:37:11 -04:00
|
|
|
sixpackDomain: '#{settings.sixpack.domain}'
|
2014-07-23 06:29:04 -04:00
|
|
|
};
|
2019-06-17 10:46:52 -04:00
|
|
|
window.systemMessages = !{StringHelper.stringifyJsonForScript(systemMessages)};
|
2016-03-02 10:29:52 -05:00
|
|
|
window.ab = {};
|
|
|
|
window.user_id = '#{getLoggedInUserId()}';
|
2019-06-17 10:46:52 -04:00
|
|
|
window.ExposedSettings = JSON.parse('!{StringHelper.stringifyJsonForScript(ExposedSettings)}');
|
2016-03-02 10:29:52 -05:00
|
|
|
|
2014-07-23 06:29:04 -04:00
|
|
|
- if (typeof(settings.algolia) != "undefined")
|
|
|
|
script.
|
|
|
|
window.sharelatex.algolia = {
|
|
|
|
app_id:'#{settings.algolia.app_id}',
|
|
|
|
api_key:'#{settings.algolia.read_only_api_key}',
|
2019-06-17 10:46:52 -04:00
|
|
|
indexes:!{StringHelper.stringifyJsonForScript(settings.algolia.indexes)}
|
2014-07-23 06:29:04 -04:00
|
|
|
}
|
|
|
|
|
2014-08-22 08:10:32 -04:00
|
|
|
- if (typeof(settings.templates) != "undefined")
|
2014-07-23 06:29:04 -04:00
|
|
|
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-07-23 06:29:04 -04:00
|
|
|
}
|
2017-12-11 13:03:09 -05:00
|
|
|
|
2017-12-18 11:53:58 -05:00
|
|
|
- if (settings.overleaf && settings.overleaf.useOLFreeTrial)
|
2017-12-11 13:03:09 -05:00
|
|
|
script.
|
2018-05-22 11:59:59 -04:00
|
|
|
window.useV2TrialUrl = true
|
|
|
|
|
2017-12-14 12:09:11 -05:00
|
|
|
|
2014-06-17 11:36:08 -04:00
|
|
|
body
|
2017-12-11 07:32:43 -05:00
|
|
|
if(settings.recaptcha)
|
2019-01-21 12:09:02 -05:00
|
|
|
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")
|
2017-12-11 07:32:43 -05:00
|
|
|
div(
|
|
|
|
id="recaptcha"
|
|
|
|
class="g-recaptcha"
|
|
|
|
data-sitekey=settings.recaptcha.siteKey
|
|
|
|
data-size="invisible"
|
|
|
|
data-badge="inline"
|
|
|
|
)
|
2016-03-18 08:55:35 -04:00
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
- if(typeof(suppressNavbar) == "undefined")
|
|
|
|
include layout/navbar
|
|
|
|
|
2014-06-17 11:43:33 -04:00
|
|
|
block content
|
2016-10-11 09:30:27 -04:00
|
|
|
|
2014-09-29 12:33:54 -04:00
|
|
|
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
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
- if (typeof(lookingForScribtex) != "undefined" && lookingForScribtex)
|
2014-07-17 12:05:39 -04:00
|
|
|
span(ng-controller="ScribtexPopupController")
|
|
|
|
include scribtex-modal
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2016-10-11 09:30:27 -04:00
|
|
|
block requirejs
|
2014-06-21 17:20:37 -04:00
|
|
|
script(type='text/javascript').
|
2016-10-11 09:30:27 -04:00
|
|
|
// minimal requirejs configuration (can be extended/overridden)
|
|
|
|
window.requirejs = {
|
|
|
|
"paths" : {
|
2017-12-02 08:38:23 -05:00
|
|
|
"moment": "libs/#{lib('moment')}",
|
2017-12-13 08:06:38 -05:00
|
|
|
"fineuploader": "libs/#{lib('fineuploader')}",
|
2017-12-14 07:11:13 -05:00
|
|
|
"main": "#{buildJsPath('main.js', {hashedPath:settings.useMinifiedJs, removeExtension:true})}",
|
|
|
|
"libraries": "#{buildJsPath('libraries.js', {hashedPath:settings.useMinifiedJs, removeExtension:true})}",
|
2016-10-11 09:30:27 -04:00
|
|
|
},
|
|
|
|
"config":{
|
|
|
|
"moment":{
|
|
|
|
"noGlobal": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2014-06-21 17:20:37 -04:00
|
|
|
script(
|
2017-12-14 07:11:13 -05:00
|
|
|
data-main=buildJsPath('main.js', {hashedPath:false}),
|
2016-07-20 07:58:32 -04:00
|
|
|
baseurl=fullJsPath,
|
2017-12-14 07:11:13 -05:00
|
|
|
src=buildJsPath('libs/require.js', {hashedPath:true})
|
2014-06-21 17:20:37 -04:00
|
|
|
)
|
2014-06-17 07:43:42 -04:00
|
|
|
|
2018-05-23 17:02:02 -04:00
|
|
|
!= moduleIncludes("contactModal", locals)
|
2017-11-22 06:37:29 -05:00
|
|
|
include v1-tooltip
|
2016-06-18 07:29:52 -04:00
|
|
|
include sentry
|
|
|
|
|
2016-03-02 10:29:52 -05:00
|
|
|
|