diff --git a/src/app/+community-page/community-page.component.html b/src/app/+community-page/community-page.component.html
index 82939e7743..976e1091e5 100644
--- a/src/app/+community-page/community-page.component.html
+++ b/src/app/+community-page/community-page.component.html
@@ -8,7 +8,7 @@
[logo]="(logoRDObs | async)?.payload"
[alternateText]="'Community Logo'">
-
+
{{collection.name}}
{{collection.shortDescription}}
diff --git a/src/app/+community-page/sub-collection-list/community-page-sub-collection-list.component.ts b/src/app/+community-page/sub-collection-list/community-page-sub-collection-list.component.ts
index cb371617c9..fc69719896 100644
--- a/src/app/+community-page/sub-collection-list/community-page-sub-collection-list.component.ts
+++ b/src/app/+community-page/sub-collection-list/community-page-sub-collection-list.component.ts
@@ -1,10 +1,9 @@
-import { Component, OnInit } from '@angular/core';
+import { Component, Input, OnInit } from '@angular/core';
import { Observable } from 'rxjs/Observable';
-import { CollectionDataService } from '../../core/data/collection-data.service';
-import { PaginatedList } from '../../core/data/paginated-list';
import { RemoteData } from '../../core/data/remote-data';
import { Collection } from '../../core/shared/collection.model';
+import { Community } from '../../core/shared/community.model';
import { fadeIn } from '../../shared/animations/fade';
@@ -15,13 +14,10 @@ import { fadeIn } from '../../shared/animations/fade';
animations:[fadeIn]
})
export class CommunityPageSubCollectionListComponent implements OnInit {
- subCollectionsRDObs: Observable