footer-small.php 763 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Small footer
  4. *
  5. * @package Blockbase
  6. */
  7. return array(
  8. 'title' => __( 'Small footer', 'blockbase' ),
  9. 'categories' => array( 'blockbase' ),
  10. 'blockTypes' => array( 'core/template-part/footer' ),
  11. 'content' => '<!-- wp:group {"layout":{"inherit":true}} -->
  12. <div class="wp-block-group">
  13. <!-- wp:group {"style":{"spacing":{"padding":{"top":"20px","bottom":"20px"}}}} -->
  14. <div class="wp-block-group" style="padding-top:20px;padding-bottom:20px">
  15. <!-- wp:paragraph {"align":"center","fontSize":"small"} -->
  16. <p class="has-text-align-center has-small-font-size">Proudly Powered by <a href="https://wordpress.org" rel="nofollow">WordPress</a></p>
  17. <!-- /wp:paragraph -->
  18. </div>
  19. <!-- /wp:group -->
  20. </div>
  21. <!-- /wp:group -->',
  22. );