overleaf/services/web/app/views/project/list.jade

30 lines
678 B
Text
Raw Normal View History

2014-02-12 10:23:40 +00:00
extends ../layout
block content
2014-07-09 10:17:16 +00:00
//- We need to do .replace(/\//g, '\\/') do that '</script>' -> '<\/script>'
2014-07-09 10:05:00 +00:00
//- and doesn't prematurely end the script tag.
2014-07-30 13:22:36 +00:00
2014-06-11 13:52:23 +00:00
script(type="text/javascript").
2014-06-11 15:32:56 +00:00
window.data = {
2014-07-09 10:17:16 +00:00
projects: !{JSON.stringify(projects).replace(/\//g, '\\/')},
tags: !{JSON.stringify(tags).replace(/\//g, '\\/')}
2014-06-11 15:32:56 +00:00
};
2014-06-17 15:19:40 +00:00
window.algolia = {
institutions: {
app_id: '#{algolia_app_id}',
api_key: '#{algolia_api_key}'
}
};
2014-06-04 16:46:22 +00:00
2014-06-17 11:43:42 +00:00
.content.content-alt(ng-controller="ProjectPageController")
.container
2014-06-11 13:52:23 +00:00
.row
2014-07-24 13:00:01 +00:00
aside.col-md-2.col-xs-3
2014-07-16 13:59:52 +00:00
include ./list/side-bar
2014-07-07 15:22:38 +00:00
.col-md-10.col-xs-9
2014-07-16 13:59:52 +00:00
include ./list/project-list
2014-07-07 13:58:12 +00:00
include ./list/modals