Files
codiki-hexagonal/frontend/src/app/pages/home/home.component.html
2024-09-21 11:12:07 +02:00

12 lines
346 B
HTML

<h1 i18n>Last publications</h1>
@if ((isLoading$ | async) === true) {
<h2 i18n>Publications loading...</h2>
<mat-spinner></mat-spinner>
} @else {
@if ((publications$ | async) != []) {
<app-publication-list [publications$]="publications$"></app-publication-list>
} @else {
<h2 i18n>No any publication.</h2>
}
}