travopti/frontend/src/app/containers/home/home.component.html
2020-06-24 13:38:12 +02:00

10 lines
440 B
HTML

<app-search-input></app-search-input>
<h2>Explore the world</h2>
<div *ngIf="!loading && !message" class="region-container">
<span *ngIf="!regions || regions.length === 0">No regions to explore :/</span>
<app-region (click)="onRegionClick(region)" *ngFor="let region of regions" [region]="region"></app-region>
</div>
<mat-spinner *ngIf="loading" class="central"></mat-spinner>
<span *ngIf="message" class="central">{{message}}</span>