refactor: finalize bootstrap-driven layout and widget runtime
This commit is contained in:
@@ -24,15 +24,21 @@
|
||||
<div class="app-footer__group">
|
||||
<h4>{{ 'footer.payment' | translate }}</h4>
|
||||
<div class="app-footer__payments">
|
||||
<img src="/assets/images/mir-logo.svg" alt="MIR" loading="lazy" width="40" height="28" />
|
||||
<img src="/assets/images/visa-logo.svg" alt="Visa" loading="lazy" width="40" height="28" />
|
||||
<img src="/assets/images/mastercard-logo.svg" alt="Mastercard" loading="lazy" width="40" height="28" />
|
||||
@for (icon of paymentIcons(); track icon.src) {
|
||||
<img [src]="icon.src" [alt]="icon.alt" loading="lazy" [width]="icon.width" [height]="icon.height" />
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="app-footer__bottom">
|
||||
<p>© {{ currentYear }} {{ brandName }}. {{ 'footer.allRightsReserved' | translate }}</p>
|
||||
<p>
|
||||
@if (copyrightText()) {
|
||||
{{ copyrightText() }}
|
||||
} @else {
|
||||
© {{ currentYear }} {{ brandName }}. {{ 'footer.allRightsReserved' | translate }}
|
||||
}
|
||||
</p>
|
||||
@if (contactEmail) {
|
||||
<a [href]="'mailto:' + contactEmail">{{ contactEmail }}</a>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user