diff --git a/src/app/+collection-page/collection-page.component.html b/src/app/+collection-page/collection-page.component.html index a4e81cd272..5037da99c4 100644 --- a/src/app/+collection-page/collection-page.component.html +++ b/src/app/+collection-page/collection-page.component.html @@ -1,35 +1,37 @@
- - - - - - - - - - - - - - - - - - +
+ + + + + + + + + + + + + + + + + + +
diff --git a/src/app/+collection-page/collection-page.component.ts b/src/app/+collection-page/collection-page.component.ts index fc6f32290f..65bf708727 100644 --- a/src/app/+collection-page/collection-page.component.ts +++ b/src/app/+collection-page/collection-page.component.ts @@ -27,7 +27,7 @@ import { fadeIn, fadeInOut } from '../shared/animations/fade'; selector: 'ds-collection-page', styleUrls: ['./collection-page.component.scss'], templateUrl: './collection-page.component.html', - animations:[ + animations: [ fadeIn, fadeInOut ] diff --git a/src/app/+community-page/community-page.component.html b/src/app/+community-page/community-page.component.html index 1acaf2d89e..6795058d02 100644 --- a/src/app/+community-page/community-page.component.html +++ b/src/app/+community-page/community-page.component.html @@ -1,28 +1,30 @@
- - - - - - - - - - - - - - - +
+ + + + + + + + + + + + + + + +
diff --git a/src/app/+community-page/community-page.component.ts b/src/app/+community-page/community-page.component.ts index d1d1081757..1295e14521 100644 --- a/src/app/+community-page/community-page.component.ts +++ b/src/app/+community-page/community-page.component.ts @@ -15,7 +15,7 @@ import { fadeInOut } from '../shared/animations/fade'; selector: 'ds-community-page', styleUrls: ['./community-page.component.scss'], templateUrl: './community-page.component.html', - animations:[fadeInOut] + animations: [fadeInOut] }) export class CommunityPageComponent implements OnInit, OnDestroy { communityData: RemoteData; diff --git a/src/app/+home-page/top-level-community-list/top-level-community-list.component.ts b/src/app/+home-page/top-level-community-list/top-level-community-list.component.ts index d7384dd038..626d3cb6d3 100644 --- a/src/app/+home-page/top-level-community-list/top-level-community-list.component.ts +++ b/src/app/+home-page/top-level-community-list/top-level-community-list.component.ts @@ -13,7 +13,7 @@ import { fadeInOut } from '../../shared/animations/fade'; selector: 'ds-top-level-community-list', styleUrls: ['./top-level-community-list.component.scss'], templateUrl: './top-level-community-list.component.html', - animations:[fadeInOut] + animations: [fadeInOut] }) export class TopLevelCommunityListComponent { topLevelCommunities: RemoteData; diff --git a/src/app/+item-page/simple/item-page.component.html b/src/app/+item-page/simple/item-page.component.html index a08a62684a..8b41c9017d 100644 --- a/src/app/+item-page/simple/item-page.component.html +++ b/src/app/+item-page/simple/item-page.component.html @@ -1,22 +1,24 @@
- -
-
- - - - - - -
-
- - - -
- - {{"item.page.link.full" | translate}} - +
+ +
+
+ + + + + + +
+
diff --git a/src/app/+item-page/simple/item-page.component.ts b/src/app/+item-page/simple/item-page.component.ts index 3ea9180b8d..84b76a5fb5 100644 --- a/src/app/+item-page/simple/item-page.component.ts +++ b/src/app/+item-page/simple/item-page.component.ts @@ -20,7 +20,7 @@ import { fadeInOut } from '../../shared/animations/fade'; selector: 'ds-item-page', styleUrls: ['./item-page.component.scss'], templateUrl: './item-page.component.html', - animations:[fadeInOut] + animations: [fadeInOut] }) export class ItemPageComponent implements OnInit { diff --git a/src/app/object-list/object-list.component.html b/src/app/object-list/object-list.component.html index d488b29365..6ef14d103c 100644 --- a/src/app/object-list/object-list.component.html +++ b/src/app/object-list/object-list.component.html @@ -1,19 +1,20 @@ - -
    -
  • - -
  • -
- - + +
    +
  • + +
  • +
+ +
diff --git a/src/app/shared/object-list/object-list.component.ts b/src/app/object-list/object-list.component.ts similarity index 80% rename from src/app/shared/object-list/object-list.component.ts rename to src/app/object-list/object-list.component.ts index dbc0c3b75c..c3a42a2e2a 100644 --- a/src/app/shared/object-list/object-list.component.ts +++ b/src/app/object-list/object-list.component.ts @@ -10,23 +10,23 @@ import { import { Observable } from 'rxjs/Observable'; -import { RemoteData } from '../../core/data/remote-data'; -import { PageInfo } from '../../core/shared/page-info.model'; +import { RemoteData } from '../core/data/remote-data'; +import { PageInfo } from '../core/shared/page-info.model'; -import { PaginationComponentOptions } from '../pagination/pagination-component-options.model'; +import { PaginationComponentOptions } from '../shared/pagination/pagination-component-options.model'; -import { SortOptions, SortDirection } from '../../core/cache/models/sort-options.model'; -import { ListableObject } from '../../object-list/listable-object/listable-object.model'; +import { SortOptions, SortDirection } from '../core/cache/models/sort-options.model'; +import { ListableObject } from '../object-list/listable-object/listable-object.model'; -import { fadeIn } from '../../shared/animations/fade'; +import { fadeIn } from '../shared/animations/fade'; @Component({ changeDetection: ChangeDetectionStrategy.Default, encapsulation: ViewEncapsulation.Emulated, selector: 'ds-object-list', - styleUrls: ['../../object-list/object-list.component.scss'], - templateUrl: '../../object-list/object-list.component.html', - animations:[fadeIn] + styleUrls: ['./object-list.component.scss'], + templateUrl: './object-list.component.html', + animations: [fadeIn] }) export class ObjectListComponent implements OnChanges, OnInit { diff --git a/src/app/shared/search-form/search-form.component.ts b/src/app/shared/search-form/search-form.component.ts index 84d0509530..a30e0f0745 100644 --- a/src/app/shared/search-form/search-form.component.ts +++ b/src/app/shared/search-form/search-form.component.ts @@ -13,7 +13,7 @@ import { Observable } from 'rxjs/Observable'; @Component({ selector: 'ds-search-form', styleUrls: ['./search-form.component.scss'], - templateUrl: './search-form.component.html', + templateUrl: './search-form.component.html' }) export class SearchFormComponent { @Input() query: string; diff --git a/src/app/shared/shared.module.ts b/src/app/shared/shared.module.ts index 21ca8c51c4..99634543eb 100644 --- a/src/app/shared/shared.module.ts +++ b/src/app/shared/shared.module.ts @@ -22,7 +22,7 @@ import { CommunityListElementComponent } from '../object-list/community-list-ele import { ErrorComponent } from './error/error.component'; import { LoadingComponent } from './loading/loading.component'; import { ItemListElementComponent } from '../object-list/item-list-element/item-list-element.component'; -import { ObjectListComponent } from './object-list/object-list.component'; +import { ObjectListComponent } from '../object-list/object-list.component'; import { ObjectListElementComponent } from '../object-list/object-list-element/object-list-element.component'; import { PaginationComponent } from './pagination/pagination.component'; import { ThumbnailComponent } from '../thumbnail/thumbnail.component';