i18n for home page.

This commit is contained in:
Florian THIERRY
2024-09-21 11:12:07 +02:00
parent cb0ef7ddd5
commit 8c957fe694
7 changed files with 36 additions and 36 deletions

View File

@@ -1,2 +1,11 @@
<h1 i18n>Last publications</h1>
<app-publication-list [publications$]="publications$"></app-publication-list>
@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>
}
}