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, '\\/')},
|
2016-01-21 15:42:50 -05:00
|
|
|
tags: !{JSON.stringify(tags).replace(/\//g, '\\/')},
|
2016-11-14 05:48:06 -05:00
|
|
|
notifications: !{JSON.stringify(notifications).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
|
|
|
|
2016-12-05 10:32:38 -05:00
|
|
|
.content.content-alt.project-list-page(ng-controller="ProjectPageController")
|
2014-06-12 10:22:49 -04:00
|
|
|
.container
|
2016-11-14 05:48:06 -05:00
|
|
|
|
2016-11-29 12:12:53 -05:00
|
|
|
div(
|
|
|
|
ng-controller="AnnouncementsController"
|
|
|
|
ng-cloak
|
|
|
|
)
|
2016-12-05 10:32:38 -05:00
|
|
|
.announcements-backdrop(ng-if="ui.isOpen")
|
|
|
|
a.announcements-btn(
|
|
|
|
href
|
|
|
|
ng-if="announcements.length"
|
|
|
|
ng-click="ui.isOpen = !ui.isOpen"
|
|
|
|
ng-class="{ 'announcements-btn-open': ui.isOpen, 'announcements-btn-has-new': ui.hasNew }"
|
|
|
|
)
|
|
|
|
span.announcements-badge(ng-if="ui.hasNew") {{ announcements.length }}
|
|
|
|
.announcements-body(
|
|
|
|
ng-if="ui.isOpen"
|
|
|
|
)
|
|
|
|
.announcement(
|
|
|
|
ng-repeat="announcement in announcements"
|
|
|
|
)
|
|
|
|
h2.announcement-header {{ announcement.title }}
|
|
|
|
p.announcement-date {{ announcement.date | date:"longDate" }}
|
|
|
|
p.announcement-description {{ announcement.excerpt }}
|
|
|
|
a(
|
|
|
|
ng-href="{{ announcement.url }}"
|
|
|
|
target="_blank"
|
|
|
|
) Read more
|
|
|
|
//- .card.card-thin(ng-show="dataReceived")
|
|
|
|
//- a.announcement-title(href, ng-click="openLink()") {{ title }}
|
|
|
|
//- p.announcement-description {{ excerpt }}
|
2016-11-11 12:03:01 -05:00
|
|
|
|
2015-11-02 13:44:12 -05:00
|
|
|
.row(ng-cloak)
|
2016-08-30 11:10:04 -04:00
|
|
|
span(ng-if="projects.length > 0")
|
2015-11-02 13:44:12 -05:00
|
|
|
aside.col-md-2.col-xs-3
|
|
|
|
include ./list/side-bar
|
|
|
|
|
|
|
|
.col-md-10.col-xs-9
|
2016-02-04 07:11:45 -05:00
|
|
|
include ./list/notifications
|
2015-11-02 13:44:12 -05:00
|
|
|
include ./list/project-list
|
|
|
|
|
2016-08-30 11:10:04 -04:00
|
|
|
span(ng-if="projects.length === 0")
|
2015-11-02 13:44:12 -05:00
|
|
|
.col-md-offset-2.col-md-8.col-md-offset-2.col-xs-8
|
2016-08-30 11:07:31 -04:00
|
|
|
include ./list/empty-project-list
|
2014-07-07 09:58:12 -04:00
|
|
|
|
2014-07-29 08:44:10 -04:00
|
|
|
include ./list/modals
|