mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 04:53:06 +00:00
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:
13
src/app/collection-page/collection-page-routing.module.ts
Normal file
13
src/app/collection-page/collection-page-routing.module.ts
Normal 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 { }
|
Reference in New Issue
Block a user