footer.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * Title: Footer
  4. * Slug: lowfi/footer
  5. * Categories: footer
  6. * Block Types: core/template-part/footer
  7. * Viewport width: 1280
  8. */
  9. declare( strict_types = 1 );
  10. ?>
  11. <!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
  12. <div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--80);padding-bottom:var(--wp--preset--spacing--80)">
  13. <!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
  14. <div class="wp-block-group">
  15. <!-- wp:social-links {"iconColor":"contrast","iconColorValue":"#316460","openInNewTab":true,"size":"has-small-icon-size","style":{"spacing":{"blockGap":{"top":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"className":"is-style-logos-only"} -->
  16. <ul class="wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only">
  17. <!-- wp:social-link {"url":"https://instagram.com/","service":"instagram"} /-->
  18. <!-- wp:social-link {"url":"https://twitter.com/","service":"x"} /-->
  19. <!-- wp:social-link {"url":"https://tumblr.com/","service":"tumblr"} /-->
  20. </ul>
  21. <!-- /wp:social-links -->
  22. <!-- wp:paragraph {"lock":{"move":false,"remove":false},"className":"has-small-font-size","fontSize":"small"} -->
  23. <p class="has-small-font-size">
  24. <?php
  25. $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'lowfi' ) ) . '" rel="nofollow">WordPress</a>';
  26. echo sprintf(
  27. /* Translators: WordPress link. */
  28. esc_html__( 'Designed with %1$s', 'lowfi' ),
  29. $wordpress_link
  30. );?>
  31. </p>
  32. <!-- /wp:paragraph -->
  33. </div>
  34. <!-- /wp:group -->
  35. </div>
  36. <!-- /wp:group -->