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