123456789101112131415161718192021222324 |
- <?php
- /**
- * Title: Footer with left navigation
- * Slug: livro/footer-nav-left
- * Categories: footer
- * Block Types: core/template-part/footer
- */
- ?>
- <!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"var(--wp--custom--spacing--large, 10rem)","top":"var(--wp--custom--spacing--small, 1.25rem)"}}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
- <div class="wp-block-group alignfull" style="padding-top:var(--wp--custom--spacing--small, 1.25rem);padding-bottom:var(--wp--custom--spacing--large, 10rem)"><!-- wp:navigation {"layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"left"},"overlayBackgroundColor":"background","overlayTextColor":"foreground","style":{"typography":{"fontStyle":"normal"}},"fontSize":"small"} -->
- <!-- wp:page-list {"isNavigationChild":true,"showSubmenuIcon":true,"openSubmenusOnClick":false} /-->
- <!-- /wp:navigation -->
- <!-- wp:paragraph {"align":"right","fontSize":"small"} -->
- <p class="has-text-align-right has-small-font-size">
- <?php echo sprintf(
- /* Translators: WordPress link. */
- esc_html__( 'Proudly powered by %s', 'livro' ),
- '<a href="' . esc_url( __( 'https://wordpress.org', 'livro' ) ) . '" rel="nofollow">WordPress</a>'
- ); ?></p>
- <!-- /wp:paragraph --></div>
- <!-- /wp:group -->
|