mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
39173fe583
Conflicts: app/coffee/infrastructure/Server.coffee app/views/project/list.jade package.json
27 lines
No EOL
675 B
Text
27 lines
No EOL
675 B
Text
extends ../layout
|
|
|
|
block content
|
|
//- We need to do .replace(/\//g, '\\/') do that '</script>' -> '<\/script>'
|
|
//- and doesn't prematurely end the script tag.
|
|
script(type="text/javascript").
|
|
window.data = {
|
|
projects: !{JSON.stringify(projects).replace(/\//g, '\\/')},
|
|
tags: !{JSON.stringify(tags).replace(/\//g, '\\/')}
|
|
};
|
|
window.algolia = {
|
|
institutions: {
|
|
app_id: '#{algolia_app_id}',
|
|
api_key: '#{algolia_api_key}'
|
|
}
|
|
};
|
|
|
|
.content.content-alt(ng-controller="ProjectPageController")
|
|
.container
|
|
.row
|
|
aside.col-md-2.col-xs-3
|
|
include ./list/side-bar
|
|
|
|
.col-md-10.col-xs-9
|
|
include ./list/project-list
|
|
|
|
include ./list/modals |