You can use it in this way
<ul>
<li *ngFor='let link of links'>
<ng-container *ngIf="link.type == 'complex'; then complexLink else simpleLink"></ng-container>
<ng-template #simpleLink>
... {{ link.some_property }}
</ng-template>
<ng-template #complexLink>
... {{ link.some_property }}
</ng-template>
</li>
</ul>