Commit c17ed3d5 by lmf

优化公共底部为block

parent c4e1bd31
......@@ -4,68 +4,8 @@
* See COPYING.txt for license details.
*/
/**
* @var \Magento\Theme\Block\Html\Header\Logo $block
*/
$storeName = $block->getThemeName() ? $block->getThemeName() : $block->getLogoAlt();
/**
* @var \Magento\Theme\ViewModel\Block\Html\Header\LogoSizeResolverInterface|null $logoSizeResolver
*/
$logoSizeResolver = $block->getLogoSizeResolver();
$logoWidth = $logoSizeResolver !== null && $logoSizeResolver->getWidth()
? $logoSizeResolver->getWidth()
: $block->getLogoWidth();
$logoHeight = $logoSizeResolver !== null && $logoSizeResolver->getHeight()
? $logoSizeResolver->getHeight()
: $block->getLogoHeight();
?>
<div class="footer-container">
<div class="footer_link">
<div style="text-align: center;color: #ffffff;padding-bottom: 30px;" >
<img src="/media/wysiwyg/joshine_logo_1.png" width="200px;" class="logo_img" id="footer_logo">
</div>
<div>
<h4>ABOUT JOSHINE <span> > </span></h4>
<ul>
<li><a href="/about-us">About Us</a></li>
<li><a href="/about-our-products">About Our Products</a></li>
<li><a href="/contact-us">Contact Us</a></li>
<li>Our Blog</li>
</ul>
</div>
<div>
<h4>HELP & SUPPORT<span> > </span></h4>
<ul>
<li><a href="/size-guide">Size Guide</a></li>
<li><a href="/payment-methods">Payment Methods</a></li>
<li><a href="/faqs">FAQs</a></li>
<li><a href="/how-to-order">How to Order</a></li>
<li><a href="/track-order">Track My Order</a></li>
</ul>
</div>
<div>
<h4>OUR POLICY<span> > </span></h4>
<ul>
<li><a href="/shipping-policy">Shipping Policy</a></li>
<li><a href="/return-exchange-policy">Return & Exchange</a></li>
<li><a href="/365-days-warranty">365-Days Warranty</a></li>
</ul>
</div>
</div>
<div class="copyright" >
<span class="copyright_left">Copyright © JOSHINE all rights reserved</span>
<span class="copyright_right">
<img src="/media/wysiwyg/footerpay.png" height="40px;">
<a title="Copy Right" href="/copy-right" >Copy Right</a>
<a title="Terms of Use" href="/terms-of-use" >Terms of Use</a>
<a title="Security & Privacy Policy" href="/security-privacy-policy" >Security & Privacy Policy</a>
</span>
</div>
</div>
<?php echo $block->getLayout()->createBlock('Magento\Cms\Block\Block')->setBlockId('public_footer')->toHtml();?>
<script>
require([
'jquery'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment