footer.php 1.1 KB

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