While taking an angular course I read the following code:
<p *ngIf="serverCreated;else noServer">{{serverName}} {{serverCreationStatus}}</p>
<ng-template #noServer>
<p>No server was created</p>
</ng-template>
I wonder if the expression #noServer is equivalent to the expression id="noServer". Is this way of doing specific to Angular? Is it recommended to use this way of defining the id?