
Add the new Pomme theme - it is a WP.com exclusive Archivo spin-off, see pNEWy-hGU-p2 --------- Co-authored-by: Dean Sas <dean.sas@automattic.com>
41 lines
1.5 KiB
PHP
41 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Title: Default footer
|
|
* Slug: pomme/footer
|
|
* Categories: footer
|
|
* Block Types: core/template-part/footer
|
|
*/
|
|
|
|
declare( strict_types = 1 );
|
|
?>
|
|
|
|
<!-- wp:spacer {"height":"192px"} -->
|
|
<div style="height:192px" aria-hidden="true" class="wp-block-spacer"></div>
|
|
<!-- /wp:spacer -->
|
|
|
|
<!-- wp:site-logo {"width":96,"shouldSyncIcon":false,"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|50"}}}} /-->
|
|
|
|
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"var:preset|spacing|50"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between","verticalAlignment":"top"}} -->
|
|
<div class="wp-block-group" style="padding-top:0;padding-bottom:var(--wp--preset--spacing--50)">
|
|
<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"top"}} -->
|
|
<div class="wp-block-group">
|
|
<!-- wp:site-title {"level":0,"style":{"typography":{"lineHeight":1.388888889}}} /-->
|
|
|
|
<!-- wp:paragraph -->
|
|
<p><a href="#"><?php echo esc_html__( 'Tumblr', 'pomme' ); ?></a> / <a href="#"><?php echo esc_html__( 'Instagram', 'pomme' ); ?></a> / <a href="#"><?php echo esc_html__( 'Email', 'pomme' ); ?></a></p>
|
|
<!-- /wp:paragraph -->
|
|
</div>
|
|
<!-- /wp:group -->
|
|
|
|
<!-- wp:paragraph -->
|
|
<p><?php
|
|
/* Translators: WordPress link. */
|
|
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'pomme' ) ) . '" rel="nofollow">WordPress</a>';
|
|
echo sprintf(
|
|
esc_html__( 'Designed with %1$s', 'pomme' ),
|
|
$wordpress_link
|
|
);
|
|
?></p>
|
|
<!-- /wp:paragraph -->
|
|
</div>
|
|
<!-- /wp:group -->
|