-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #318 from damonsson/2.0
performance optimization
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<div class="col-12 text-center col-md-6 order-md-4 text-md-start col-lg-3 order-lg-4 text-lg-center"> | ||
<div class="mb-3 fw-medium">Payment methods:</div> | ||
|
||
<div class="row g-2 mb-4"> | ||
<div class="col-4"> | ||
<a href="https://sylius.com/partner/paypal/" target="_blank" class="d-block border rounded p-2"> | ||
<img class="img-fluid" loading="lazy" src="{{ asset('build/shop/images/paypal-logo.svg', 'shop') }}" width="100%" height="100%" alt="PayPal" /> | ||
</a> | ||
</div> | ||
<div class="col-4"> | ||
<a href="https://sylius.com/partner/adyen/" target="_blank" class="d-block border rounded p-2"> | ||
<img class="img-fluid" loading="lazy" src="{{ asset('build/shop/images/adyen-logo.svg', 'shop') }}" width="100%" height="100%" alt="Adyen" /> | ||
</a> | ||
</div> | ||
<div class="col-4"> | ||
<a href="https://sylius.com/partner/mollie/" target="_blank" class="d-block border rounded p-2"> | ||
<img class="img-fluid" loading="lazy" src="{{ asset('build/shop/images/mollie-logo.svg', 'shop') }}" width="100%" height="100%" alt="Mollie" /> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<div class="d-flex justify-content-center justify-content-md-start justify-content-lg-center gap-3 mb-5"> | ||
<a class="link-reset" href="https://www.instagram.com/sylius.team/" target="_blank" aria-label="instagram logo">{{ ux_icon('tabler:brand-instagram', { class: 'icon icon-md' }) }}</a> | ||
<a class="link-reset" href="https://www.facebook.com/SyliusEcommerce/" target="_blank" aria-label="facebook logo">{{ ux_icon('tabler:brand-facebook', { class: 'icon icon-md' }) }}</a> | ||
<a class="link-reset" href="https://x.com/Sylius" target="_blank" aria-label="x logo">{{ ux_icon('tabler:brand-x', { class: 'icon icon-md' }) }}</a> | ||
</div> | ||
</div> |