forked from DSpace/dspace-angular
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhome-page.component.html
More file actions
28 lines (27 loc) · 902 Bytes
/
Copy pathhome-page.component.html
File metadata and controls
28 lines (27 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!-- <ds-home-coar></ds-home-coar> -->
<!-- <ds-home-news></ds-home-news> -->
@if (showDiscoverFilters) {
<ds-configuration-search-page
[sideBarWidth]="3"
[showViewModes]="false"
[searchEnabled]="false"
[inPlaceSearch]="false"
[showScopeSelector]="false">
<ng-container searchContentTop *ngTemplateOutlet="homeContent"></ng-container>
</ds-configuration-search-page>
}
@if (!showDiscoverFilters) {
<div class="container">
<ng-container *ngTemplateOutlet="homeContent"></ng-container>
</div>
}
<ds-suggestions-popup></ds-suggestions-popup>
<ng-template #homeContent>
<ds-search-form [inPlaceSearch]="false"
[searchPlaceholder]="'home.search-form.placeholder' | translate">
</ds-search-form>
<ds-top-level-community-list></ds-top-level-community-list>
@if (recentSubmissionspageSize>0) {
<ds-recent-item-list></ds-recent-item-list>
}
</ng-template>