overleaf/services/web/app/views/project/list.jade
2014-07-16 14:59:52 +01:00

27 lines
653 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
.col-md-2
include ./list/side-bar
.col-md-10
include ./list/project-list
include ./list/modals