71 lines
2.4 KiB
PHP
71 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* Shared brand footer.
|
|
*
|
|
* Used by front-page.php and page-templates/page-shop.php. Emits the
|
|
* cream-background footer: top row (logo + tagline / 4 social pills),
|
|
* 4-column link grid (SHOP / BRAND / HELP / COMMUNITY), bottom row
|
|
* (copyright + legal links).
|
|
*
|
|
* @package SewJoy_Theme
|
|
*/
|
|
?>
|
|
<footer class="home-footer" role="contentinfo">
|
|
<div class="home-footer__top">
|
|
<div class="home-footer__logo-group">
|
|
<span class="home-footer__logo"><?php bloginfo( 'name' ); ?></span>
|
|
<span class="home-footer__tagline">HANDMADE GOODS</span>
|
|
</div>
|
|
|
|
<ul class="home-footer__socials" aria-label="<?php esc_attr_e( 'Social media', 'sewjoy-theme' ); ?>">
|
|
<li><a href="#" aria-label="Pinterest">P</a></li>
|
|
<li><a href="#" aria-label="Facebook">F</a></li>
|
|
<li><a href="#" aria-label="Instagram">I</a></li>
|
|
<li><a href="#" aria-label="YouTube">Y</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="home-footer__divider" role="presentation"></div>
|
|
|
|
<div class="home-footer__grid">
|
|
<div class="home-footer__col">
|
|
<h4>SHOP</h4>
|
|
<ul>
|
|
<li><a href="#">Custom Clothing</a></li>
|
|
<li><a href="#">Design Library</a></li>
|
|
<li><a href="#">Gift Cards</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="home-footer__col">
|
|
<h4>BRAND</h4>
|
|
<ul>
|
|
<li><a href="#">Our Story</a></li>
|
|
<li><a href="#">Craftsmanship</a></li>
|
|
<li><a href="#">Sustainability</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="home-footer__col">
|
|
<h4>HELP</h4>
|
|
<ul>
|
|
<li><a href="#">Size Guide</a></li>
|
|
<li><a href="#">Shipping</a></li>
|
|
<li><a href="#">Returns</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="home-footer__col">
|
|
<h4>COMMUNITY</h4>
|
|
<ul>
|
|
<li><a href="#">Makers Hub</a></li>
|
|
<li><a href="#">Pattern Library</a></li>
|
|
<li><a href="#">Tutorials</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="home-footer__divider" role="presentation"></div>
|
|
|
|
<div class="home-footer__bottom">
|
|
<span>© <?php echo esc_html( date( 'Y' ) ); ?> <?php bloginfo( 'name' ); ?></span>
|
|
<span>Privacy · Terms · Cookies</span>
|
|
</div>
|
|
</footer>
|