footer.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php declare( strict_types = 1 ); ?>
  2. <?php
  3. /**
  4. * Title: Default footer
  5. * Slug: foam/footer
  6. * Categories: footer
  7. * Block Types: core/template-part/footer
  8. * Inserter: yes
  9. */
  10. ?>
  11. <!-- wp:spacer {"height":"var(--wp--preset--spacing--80)"} -->
  12. <div style="height:var(--wp--preset--spacing--80)" aria-hidden="true" class="wp-block-spacer"></div>
  13. <!-- /wp:spacer -->
  14. <!-- wp:group {"layout":{"type":"constrained"}} -->
  15. <div class="wp-block-group">
  16. <!-- wp:group {"style":{"spacing":{"padding":{"top":"var(--wp--preset--spacing--60)","bottom":"var(--wp--preset--spacing--60)"}}}} -->
  17. <div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)">
  18. <!-- wp:paragraph {"align":"center"} -->
  19. <p class="has-text-align-center">
  20. <?php
  21. /* Translators: WordPress link. */
  22. $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'foam' ) ) . '" rel="nofollow">WordPress</a>';
  23. echo sprintf(
  24. esc_html__( 'Designed with %1$s', 'foam' ),
  25. $wordpress_link
  26. );
  27. ?>
  28. </p>
  29. <!-- /wp:paragraph -->
  30. </div>
  31. <!-- /wp:group -->
  32. </div>
  33. <!-- /wp:group -->