2026-07-05 02:08:15 +04:00
|
|
|
@if (loading()) {
|
|
|
|
|
<section class="home-loading">Loading homepage...</section>
|
|
|
|
|
} @else if (pageModel()) {
|
|
|
|
|
<app-dynamic-page-layout [model]="pageModel()" />
|
2026-01-18 18:57:06 +04:00
|
|
|
} @else {
|
2026-07-05 02:08:15 +04:00
|
|
|
<section class="home-empty">No page configuration found.</section>
|
2026-01-18 18:57:06 +04:00
|
|
|
}
|