1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Title: Footer
- * Slug: indice/footer
- * Categories: footer
- * Block Types: core/template-part/footer
- */
- declare( strict_types = 1 );
- ?>
- <!-- wp:group {"style":{"spacing":{"blockGap":"0px","padding":{"right":"var:preset|spacing|60","left":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"default"}} -->
- <div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)">
- <!-- wp:paragraph -->
- <p><?php echo esc_html__( 'Indice –––––––––', 'indice' ); ?></p>
- <!-- /wp:paragraph -->
- <!-- wp:paragraph -->
- <p><?php
- /* Translators: WordPress link. */
- $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'indice' ) ) . '" rel="nofollow">WordPress</a>';
- echo sprintf(
- esc_html__( 'Designed with %1$s', 'indice' ),
- $wordpress_link
- );
- ?></p>
- <!-- /wp:paragraph -->
- </div>
- <!-- /wp:group -->
|