
* Initial commit. * review and fix issues * remove comments and use patterns * add screenshot * update tags * fix templates and template-parts --------- Co-authored-by: madhusudhand <madhusudhan.dollu@gmail.com>
41 lines
2.1 KiB
PHP
41 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* Title: Default footer
|
|
* Slug: lois/footer
|
|
* Categories: footer
|
|
* Block Types: core/template-part/footer
|
|
*/
|
|
?>
|
|
|
|
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
|
<div class="wp-block-group"><!-- wp:spacer {"height":"3rem","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
|
|
<div style="margin-top:0px;margin-bottom:0px;height:3rem" aria-hidden="true" class="wp-block-spacer"></div>
|
|
<!-- /wp:spacer -->
|
|
|
|
<!-- wp:columns {"verticalAlignment":"center","align":"wide","style":{"spacing":{}}} -->
|
|
<div class="wp-block-columns alignwide are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center","width":"66.7%","layout":{"type":"default"}} -->
|
|
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:66.7%"><!-- wp:group {"style":{"spacing":{"blockGap":"2.5rem"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
|
<div class="wp-block-group"><!-- wp:site-title {"style":{"typography":{"lineHeight":"1.4","letterSpacing":"4px","textTransform":"uppercase"}},"fontSize":"small","fontFamily":"figtree"} /--></div>
|
|
<!-- /wp:group --></div>
|
|
<!-- /wp:column -->
|
|
|
|
<!-- wp:column {"verticalAlignment":"center","width":"33.3%"} -->
|
|
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:33.3%"><!-- wp:paragraph {"align":"left","style":{"typography":{"fontStyle":"normal","fontWeight":"700"}},"fontSize":"small","fontFamily":"libre-franklin"} -->
|
|
<p class="has-text-align-left has-libre-franklin-font-family has-small-font-size" style="font-style:normal;font-weight:700">
|
|
<?php
|
|
/* Translators: WordPress link. */
|
|
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'lois' ) ) . '" rel="nofollow">WordPress</a>';
|
|
echo sprintf(
|
|
esc_html__( 'Designed with %1$s', 'lois' ),
|
|
$wordpress_link
|
|
);
|
|
?>
|
|
</p>
|
|
<!-- /wp:paragraph --></div>
|
|
<!-- /wp:column --></div>
|
|
<!-- /wp:columns -->
|
|
|
|
<!-- wp:spacer {"height":"12rem","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
|
|
<div style="margin-top:0px;margin-bottom:0px;height:12rem" aria-hidden="true" class="wp-block-spacer"></div>
|
|
<!-- /wp:spacer --></div>
|
|
<!-- /wp:group -->
|