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

152 lines
4.6 KiB
Text
Raw Normal View History

2014-06-04 11:28:20 -04:00
doctype html
2014-02-12 05:23:40 -05:00
html(itemscope, itemtype='http://schema.org/Product')
2014-06-21 17:20:37 -04:00
block vars
2014-02-12 05:23:40 -05:00
head
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; }
2016-08-19 06:05:35 -04:00
2014-08-24 12:07:40 -04:00
-if (typeof(gaExperiments) != "undefined")
|!{gaExperiments}
2014-08-07 11:53:01 -04:00
-if (typeof(title) == "undefined")
title= 'ShareLaTeX, '+ translate("online_latex_editor")
2014-08-07 11:53:01 -04:00
-else
title= translate(title) + ' - ShareLaTeX, ' + translate("online_latex_editor")
2014-08-01 08:47:14 -04:00
2014-07-23 10:56:15 -04:00
link(rel="icon", href="/favicon.ico")
link(rel='stylesheet', href=buildCssPath('/style.css'))
2014-02-12 05:23:40 -05:00
if settings.i18n.subdomainLang
each subdomainDetails in settings.i18n.subdomainLang
if !subdomainDetails.hide
link(rel="alternate", href=subdomainDetails.url+currentUrl, hreflang=subdomainDetails.lngCode)
2016-03-02 10:29:52 -05:00
meta(itemprop="name", content="ShareLaTeX, the Online LaTeX Editor")
-if (typeof(meta) == "undefined")
meta(itemprop="description", name="description", content='#{translate("site_description")}')
-else
meta(itemprop="description", name="description" , content=meta)
meta(itemprop="image", name="image", content="https://www.sharelatex.com/favicon.ico")
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');
ga('create', '#{gaToken}', 'sharelatex.com');
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) };
2014-06-11 09:52:23 -04:00
script(type="text/javascript").
2014-02-12 05:23:40 -05:00
window.csrfToken = "#{csrfToken}";
2014-06-11 09:52:23 -04:00
block scripts
2016-08-19 06:05:35 -04:00
script(src=buildJsPath("libs/jquery-1.11.1.min.js", {fingerprint:false}))
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;
}
2016-08-23 11:58:39 -04:00
script(src=buildJsPath("libs/angular-1.3.15.min.js", {fingerprint:false}))
2016-08-19 06:05:35 -04:00
script.
window.sharelatex = {
siteUrl: '#{settings.siteUrl}',
2015-10-27 06:58:27 -04:00
jsPath: '#{jsPath}',
sixpackDomain: '#{settings.sixpack.domain}'
};
2014-07-24 08:24:08 -04:00
window.systemMessages = !{JSON.stringify(systemMessages).replace(/\//g, '\\/')};
2016-03-02 10:29:52 -05:00
window.ab = {};
window.user_id = '#{getLoggedInUserId()}';
- if (typeof(settings.algolia) != "undefined")
script.
window.sharelatex.algolia = {
app_id:'#{settings.algolia.app_id}',
api_key:'#{settings.algolia.read_only_api_key}',
indexes:!{JSON.stringify(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
2014-07-24 08:24:08 -04:00
- if(typeof(suppressSystemMessages) == "undefined")
.system-messages(
ng-cloak
ng-controller="SystemMessagesController"
)
.system-message(
ng-repeat="message in messages"
ng-controller="SystemMessageController"
ng-hide="hidden"
)
a(href, ng-click="hide()").pull-right ×
.system-message-content(ng-bind-html="htmlContent")
include translations/translation_message
2014-06-21 17:20:37 -04:00
- if(typeof(suppressNavbar) == "undefined")
include layout/navbar
2016-10-11 08:02:30 -04:00
script(type='text/javascript').
// minimal requirejs configuration (can be extended/overridden)
window.requirejs = {
"paths" : {
"moment": "libs/#{lib('moment')}"
},
"config":{
"moment":{
"noGlobal": true
}
}
};
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
2014-02-12 05:23:40 -05:00
- if (typeof(lookingForScribtex) != "undefined" && lookingForScribtex)
span(ng-controller="ScribtexPopupController")
include scribtex-modal
2014-02-12 05:23:40 -05:00
- if(typeof(suppressDefaultJs) == "undefined")
2014-06-21 17:20:37 -04:00
script(type='text/javascript').
2016-10-11 08:02:30 -04:00
// extend requirejs config
window.requirejs.urlArgs = "fingerprint=#{fingerprint(jsPath + 'main.js')}-#{fingerprint(jsPath + 'libs.js')}"
2014-06-21 17:20:37 -04:00
script(
2016-07-20 10:17:01 -04:00
data-main=buildJsPath('main.js', {fingerprint:false}),
2016-07-20 07:58:32 -04:00
baseurl=fullJsPath,
src=buildJsPath('libs/require.js')
2014-06-21 17:20:37 -04:00
)
2014-06-17 07:43:42 -04:00
2016-07-20 10:17:01 -04:00
include contact-us-modal
2016-06-18 07:29:52 -04:00
include sentry
2016-03-02 10:29:52 -05:00