<ng-container *ngIf="arriving;
then arrivingContent;
else departingContent">
</ng-container>
<!-- Templates @ page-bottom -->
<ng-template #arrivingContent>Hello World</ng-template>
<ng-template #departingContent>Goodbye World</ng-template>