footer.php 1021 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Title: Default footer
  4. * Slug: chanson/footer
  5. * Categories: featured, footer
  6. * Block Types: core/template-part/footer
  7. */
  8. declare( strict_types = 1 );
  9. ?>
  10. <!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|80","bottom":"var:preset|spacing|80","left":"var:preset|spacing|80"}}},"layout":{"type":"default"}} -->
  11. <div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--80);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--80)">
  12. <!-- wp:paragraph {"align":"right","fontSize":"x-small"} -->
  13. <p class="has-text-align-right has-x-small-font-size"><?php
  14. /* Translators: WordPress link. */
  15. $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'chanson' ) ) . '" rel="nofollow">WordPress</a>';
  16. echo sprintf(
  17. esc_html__( 'Designed with %1$s', 'chanson' ),
  18. $wordpress_link
  19. );?></p>
  20. <!-- /wp:paragraph -->
  21. </div>
  22. <!-- /wp:group -->