123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Title: Default footer
- * Slug: creatio/footer
- * Categories: footer
- * Block Types: core/template-part/footer
- */
- ?>
- <!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"40px","left":"40px","top":"80px","bottom":"80px"}}},"layout":{"type":"constrained"}} -->
- <div class="wp-block-group alignfull" style="padding-top:80px;padding-right:40px;padding-bottom:80px;padding-left:40px"><!-- wp:group {"align":"wide","layout":{"type":"flex","justifyContent":"space-between","flexWrap":"wrap"}} -->
- <div class="wp-block-group alignwide"><!-- wp:group {"layout":{"type":"flex"}} -->
- <div class="wp-block-group"><!-- wp:navigation {"overlayMenu":"never"} /--></div>
- <!-- /wp:group -->
- <!-- wp:paragraph {"style":{"typography":{"fontSize":"0.8rem"}}} -->
- <p style="font-size:0.8rem">
- <?php
- /* Translators: WordPress link. */
- $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'creatio' ) ) . '" rel="nofollow">WordPress</a>';
- echo sprintf(
- esc_html__( 'Designed with %1$s', 'creatio' ),
- $wordpress_link
- );
- ?>
- </p>
- <!-- /wp:paragraph --></div>
- <!-- /wp:group --></div>
- <!-- /wp:group -->
|