Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 1x | <address>
<div *ngIf="store.name">{{ store.name }}</div>
<div *ngIf="store.address">{{ store.address }}</div>
<div *ngIf="store.postalCode || store.city">{{ store.postalCode }} {{ store.city }}</div>
<div *ngIf="store.country">{{ store.country }}</div>
<div *ngIf="store.phone">
<fa-icon [icon]="['fas', 'phone']" class="pe-1" />
<a href="tel:{{ store.phone }}">{{ store.phone }}</a>
</div>
<div *ngIf="store.fax">
<fa-icon [icon]="['fas', 'fax']" class="pe-1" />
<span>{{ store.fax }}</span>
</div>
<div *ngIf="store.email">
<fa-icon [icon]="['fas', 'envelope']" class="pe-1" />
<a href="mailto:{{ store.email }}">{{ store.email }}</a>
</div>
</address>
|