
* Stewart: refactor patteerns * Stewart: removing "block pattern" from pattern title * Stewart: adding block types to header patterns * Stewart: removing pattern category * Stewart: rename patterns
33 lines
1,009 B
PHP
33 lines
1,009 B
PHP
<?php
|
|
/**
|
|
* Title: Default footer
|
|
* Slug: stewart/footer-left
|
|
* Categories: footer
|
|
* Block Types: core/template-part/footer
|
|
*/
|
|
?>
|
|
|
|
<!-- wp:spacer {"height":60} -->
|
|
<div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
|
|
<!-- /wp:spacer -->
|
|
|
|
<!-- wp:group {"align":"full","layout":{"inherit":true}} -->
|
|
<div class="wp-block-group alignfull">
|
|
<!-- wp:group {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"}} -->
|
|
<div class="wp-block-group alignwide"><!-- wp:paragraph {"style":{"fontSize":"small"} -->
|
|
<p class="has-small-font-size">
|
|
<?php
|
|
printf(
|
|
/* Translators: WordPress link. */
|
|
esc_html__( 'Proudly powered by %s', 'stewart' ),
|
|
'<a href="' . esc_url( __( 'https://wordpress.org', 'stewart' ) ) . '" rel="nofollow">WordPress</a>'
|
|
);
|
|
?>
|
|
</p>
|
|
<!-- /wp:paragraph --></div>
|
|
<!-- /wp:group --></div>
|
|
<!-- /wp:group -->
|
|
|
|
<!-- wp:spacer {"height":60} -->
|
|
<div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
|
|
<!-- /wp:spacer -->
|