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

166 lines
5.3 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= settings.appName + ', '+ translate("online_latex_editor")
2014-08-07 11:53:01 -04:00
-else
title= translate(title) + ' - ' + settings.appName + ', ' + translate("online_latex_editor")
2014-08-01 08:47:14 -04:00
link(rel="icon", href="/" + settings.brandPrefix + "favicon.ico")
link(rel="icon", sizes="192x192", href="/" + settings.brandPrefix + "touch-icon-192x192.png")
link(rel="apple-touch-icon-precomposed", href="/" + settings.brandPrefix + "apple-touch-icon-precomposed.png")
link(rel="mask-icon", href="/" + settings.brandPrefix + "mask-favicon.svg", color="#a93529")
2017-03-01 10:21:46 -05:00
link(rel='stylesheet', href=buildCssPath("/" + settings.brandPrefix + "style.css", {hashedPath:true}))
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)
2016-03-02 10:29:52 -05:00
meta(itemprop="name", content=settings.appName + ", the Online LaTeX Editor")
-if (typeof(meta) == "undefined")
2017-01-31 09:57:22 -05:00
meta(itemprop="description", name="description", content=translate("site_description"))
-else
meta(itemprop="description", name="description" , content=meta)
meta(itemprop="image", name="image", content="/" + settings.brandPrefix + "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}";
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;
}
block scripts
2017-06-26 05:07:15 -04:00
script(src=buildJsPath("libs/angular-1.6.4.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
if(settings.recaptcha)
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-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
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
block requirejs
2014-06-21 17:20:37 -04:00
script(type='text/javascript').
// 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-13 09:13:45 -05:00
"main": "#{buildJsPath('main.js', {hashedPath:true, fingerprint:false, removeExtension:true})}"
},
"config":{
"moment":{
"noGlobal": true
}
}
};
2014-06-21 17:20:37 -04:00
script(
2017-12-13 08:06:38 -05:00
data-main=buildJsPath('main.js', {hashedPath:false, 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
include contact-us-modal
include v1-tooltip
2016-06-18 07:29:52 -04:00
include sentry
2016-03-02 10:29:52 -05:00