2014-02-12 10:23:40 +00:00
|
|
|
extends ../layout
|
|
|
|
|
2014-07-08 11:01:32 +00:00
|
|
|
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, '\\/')},
|
2016-01-21 20:42:50 +00:00
|
|
|
tags: !{JSON.stringify(tags).replace(/\//g, '\\/')},
|
|
|
|
notifications: !{JSON.stringify(notifications).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")
|
2014-06-12 14:22:49 +00:00
|
|
|
.container
|
2016-02-04 12:11:45 +00:00
|
|
|
|
2015-11-02 18:44:12 +00:00
|
|
|
.row(ng-cloak)
|
2016-08-30 15:10:04 +00:00
|
|
|
span(ng-if="projects.length > 0")
|
2015-11-02 18:44:12 +00:00
|
|
|
aside.col-md-2.col-xs-3
|
|
|
|
include ./list/side-bar
|
|
|
|
|
|
|
|
.col-md-10.col-xs-9
|
2016-02-04 12:11:45 +00:00
|
|
|
include ./list/notifications
|
2015-11-02 18:44:12 +00:00
|
|
|
include ./list/project-list
|
|
|
|
|
2016-08-30 15:10:04 +00:00
|
|
|
span(ng-if="projects.length === 0")
|
2015-11-02 18:44:12 +00:00
|
|
|
.col-md-offset-2.col-md-8.col-md-offset-2.col-xs-8
|
2016-08-30 15:07:31 +00:00
|
|
|
include ./list/empty-project-list
|
2014-07-07 13:58:12 +00:00
|
|
|
|
2014-07-29 12:44:10 +00:00
|
|
|
include ./list/modals
|