Implement collection home page

Shows the following fields if they exist:
* title
* logo
* introductory text
* news (also referred to as sidebarText)
* copyright text
* license

Fixes https://github.com/DSpace/dspace-angular/issues/63
This commit is contained in:
Àlex Magaz Graça
2017-04-18 14:57:01 +02:00
parent af5b721d40
commit c5d92d4e5f
33 changed files with 233 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { CollectionPageComponent } from './collection-page.component';
@NgModule({
imports: [
RouterModule.forChild([
{ path: 'collections/:id', component: CollectionPageComponent }
])
]
})
export class CollectionPageRoutingModule { }