2014-06-04 15:28:20 +00:00
doctype html
2014-02-12 10:23:40 +00:00
html(itemscope, itemtype='http://schema.org/Product')
2014-06-21 21:20:37 +00:00
block vars
2014-02-12 10:23:40 +00:00
head
2015-03-10 18:56:46 +00:00
script(type="text/javascript").
2015-02-05 11:23:45 +00:00
// Stop superfish from loading
window.similarproducts = true
2015-10-14 15:22:32 +00: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 11:23:45 +00:00
2014-08-24 16:07:40 +00:00
-if (typeof(gaExperiments) != "undefined")
|!{gaExperiments}
2014-08-22 13:20:39 +00:00
2014-08-07 15:53:01 +00:00
-if (typeof(title) == "undefined")
title ShareLaTeX, the Online LaTeX Editor
-else
2014-08-07 14:15:07 +00:00
title= translate(title) + ' - ShareLaTeX, '+translate("online_latex_editor")
2014-08-01 12:47:14 +00:00
2014-07-23 14:56:15 +00:00
link(rel="icon", href="/favicon.ico")
2014-06-04 15:14:35 +00:00
link(rel='stylesheet', href='/stylesheets/style.css?fingerprint='+fingerprint('/stylesheets/style.css'))
2014-12-28 22:14:39 +00:00
link(href="//netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css",rel="stylesheet")
2014-02-12 10:23:40 +00:00
2014-08-06 14:35:57 +00:00
if settings.i18n.subdomainLang
each subdomainDetails in settings.i18n.subdomainLang
link(rel="alternate", href=subdomainDetails.url+currentUrl, hreflang=subdomainDetails.lngCode)
2014-08-06 14:05:13 +00:00
2014-08-07 15:09:31 +00:00
meta(itemprop="name", content="ShareLaTeX, the Online LaTeX Editor")
-if (typeof(meta) == "undefined")
2015-02-18 21:40:15 +00:00
meta(itemprop="description", name="description", content="An online LaTeX editor that's easy to use. No installation, real-time collaboration, version control, hundreds of LaTeX templates, and more.")
2014-08-07 15:09:31 +00:00
-else
2015-02-18 21:40:15 +00:00
meta(itemprop="description", name="description" , content=meta)
2014-08-07 15:09:31 +00:00
2015-02-18 21:40:15 +00:00
meta(itemprop="image", name="image", content="https://www.sharelatex.com/favicon.ico")
2014-02-12 10:23:40 +00:00
- if (typeof(gaToken) != "undefined")
2014-06-04 15:28:20 +00:00
script(type='text/javascript').
2014-03-05 15:45:24 +00: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');
2014-03-08 18:31:07 +00:00
ga('create', '#{gaToken}', 'sharelatex.com');
2014-03-05 15:45:24 +00:00
ga('send', 'pageview');
2014-03-14 11:14:02 +00:00
- else
2014-06-11 13:52:23 +00:00
script(type='text/javascript').
2014-03-25 16:24:50 +00:00
window.ga = function() { console.log("Sending to GA", arguments) };
2014-03-05 15:45:24 +00:00
2014-06-11 13:52:23 +00:00
script(type="text/javascript").
2014-02-12 10:23:40 +00:00
window.csrfToken = "#{csrfToken}";
2014-09-01 14:14:08 +00:00
2014-06-11 13:52:23 +00:00
block scripts
2014-11-07 09:49:30 +00:00
script(src="#{jsPath}libs/jquery-1.11.1.min.js")
2015-06-03 10:14:26 +00:00
script(src="#{jsPath}libs/angular-1.3.15.min.js")
2015-03-17 16:59:17 +00:00
include sentry
2014-07-23 10:29:04 +00:00
script.
window.sharelatex = {
siteUrl: '#{settings.siteUrl}',
2015-10-27 10:58:27 +00:00
jsPath: '#{jsPath}',
2015-10-27 11:37:11 +00:00
sixpackDomain: '#{settings.sixpack.domain}'
2014-07-23 10:29:04 +00:00
};
2014-07-24 12:24:08 +00:00
window.systemMessages = !{JSON.stringify(systemMessages).replace(/\//g, '\\/')};
2014-09-01 14:14:08 +00:00
window.ab = {}
2015-11-17 15:54:59 +00:00
window.user_id = '#{getLoggedInUserId()}'
2014-07-23 10:29:04 +00: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:!{JSON.stringify(settings.algolia.indexes)}
}
2014-08-22 12:10:32 +00:00
- if (typeof(settings.templates) != "undefined")
2014-07-23 10:29:04 +00:00
script.
window.sharelatex.templates = {
2014-08-22 12:10:32 +00:00
user_id : '!{settings.templates.user_id}',
cdnDomain : '!{settings.templates.cdnDomain}',
indexName : '!{settings.templates.indexName}'
2014-07-23 10:29:04 +00:00
}
2014-06-17 15:36:08 +00:00
body
2014-07-24 12:24:08 +00: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")
2014-08-20 13:08:59 +00:00
include translations/translation_message
2014-08-13 11:31:14 +00:00
2014-09-29 16:33:54 +00:00
2014-06-21 21:20:37 +00:00
- if(typeof(suppressNavbar) == "undefined")
include layout/navbar
2014-06-17 15:43:33 +00:00
block content
2014-09-29 16:33:54 +00:00
div(ng-controller="AbTestController")
2014-06-21 21:20:37 +00:00
- if(typeof(suppressFooter) == "undefined")
include layout/footer
2014-06-17 15:36:08 +00:00
2014-07-17 16:05:39 +00:00
2014-02-12 10:23:40 +00:00
- if (typeof(lookingForScribtex) != "undefined" && lookingForScribtex)
2014-07-17 16:05:39 +00:00
span(ng-controller="ScribtexPopupController")
include scribtex-modal
2014-02-12 10:23:40 +00:00
2014-06-17 11:43:42 +00:00
2014-06-21 21:20:37 +00:00
- if(typeof(suppressFooter) == "undefined")
script(type='text/javascript').
window.requirejs = {
2014-07-25 11:52:17 +00:00
"urlArgs" : "fingerprint=#{fingerprint(jsPath + 'main.js')}-#{fingerprint(jsPath + 'libs.js')}",
2014-07-08 11:01:32 +00:00
"paths" : {
2014-07-18 11:18:05 +00:00
"moment": "libs/moment-2.7.0"
2014-07-08 11:01:32 +00:00
}
2014-06-21 21:20:37 +00:00
};
script(
2014-07-08 11:01:32 +00:00
data-main=jsPath+'main.js',
2014-06-21 21:20:37 +00:00
baseurl=jsPath,
src=jsPath+'libs/require.js?fingerprint='+fingerprint(jsPath + 'libs/require.js')
)
2014-06-17 11:43:42 +00:00
- if (typeof(tenderUrl) != "undefined")
script(src="https://#{tenderUrl}/tender_widget.js" )
script(type="text/javascript").
Tender = {
hideToggle: true,
widgetToggles: $(".js-tender-widget"),
category: "questions"
};
2014-07-01 13:25:32 +00:00
2014-09-01 14:14:08 +00:00
2014-07-01 13:25:32 +00:00