
* Add pieria theme A theme created by @henriqueiamarino * Make only the sidebar a pattern * Remove theme attribute * Update pieria/readme.txt Co-authored-by: Sarah Norris <1645628+mikachan@users.noreply.github.com> * Update pieria/style.css Co-authored-by: Sarah Norris <1645628+mikachan@users.noreply.github.com> * Update pieria/style.css Co-authored-by: Sarah Norris <1645628+mikachan@users.noreply.github.com> * Update pieria/style.css Co-authored-by: Sarah Norris <1645628+mikachan@users.noreply.github.com> * Translate 404 template, move to pattern * Remove unused styles * Make sidebar credit text translatable * Replace separator paragraph with separator block * Remove unused fonts * Add asset licenses to readme file * Add missing closing p tag * Convert embedded image to webp * Move translators comment according to style rules * fix separator --------- Co-authored-by: Sarah Norris <1645628+mikachan@users.noreply.github.com>
33 lines
No EOL
1.2 KiB
PHP
33 lines
No EOL
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Title: Default footer
|
|
* Slug: pieria/footer
|
|
* Categories: footer
|
|
* Block Types: core/template-part/footer
|
|
*/
|
|
?>
|
|
|
|
<!-- wp:spacer {"height":"var(--wp--preset--spacing--80)"} -->
|
|
<div style="height:var(--wp--preset--spacing--80)" aria-hidden="true" class="wp-block-spacer"></div>
|
|
<!-- /wp:spacer -->
|
|
|
|
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
|
<div class="wp-block-group">
|
|
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var(--wp--preset--spacing--60)","bottom":"var(--wp--preset--spacing--60)"}}}} -->
|
|
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)">
|
|
<!-- wp:paragraph {"align":"center"} -->
|
|
<p class="has-text-align-center">
|
|
<?php
|
|
/* Translators: WordPress link. */
|
|
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'pieria' ) ) . '" rel="nofollow">WordPress</a>';
|
|
echo sprintf(
|
|
esc_html__( 'Designed with %1$s', 'pieria' ),
|
|
$wordpress_link
|
|
);
|
|
?>
|
|
</p>
|
|
<!-- /wp:paragraph -->
|
|
</div>
|
|
<!-- /wp:group -->
|
|
</div>
|
|
<!-- /wp:group -->
|