12 lines
277 B
HTML
12 lines
277 B
HTML
<h1 i18n>Last publications</h1>
|
|
@if ((isLoading())) {
|
|
<h2 i18n>Publications loading...</h2>
|
|
<mat-spinner/>
|
|
} @else {
|
|
@if (publications(); as publications) {
|
|
<app-publication-list [publications]="publications"/>
|
|
} @else {
|
|
<h2 i18n>No any publication.</h2>
|
|
}
|
|
}
|