aad5dcae8a
* Ron: add theme * Remove "theme" attribute * Add 'Go back' pattern Needed in order to get the actual Home page URL using PHP. * Bump version, fix url, remove unused table styles * Convert images to webp * add license information * Add new templates, use pattern on search
33 lines
No EOL
1.2 KiB
PHP
33 lines
No EOL
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Title: Default footer
|
|
* Slug: ron/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', 'ron' ) ) . '" rel="nofollow">WordPress</a>';
|
|
echo sprintf(
|
|
esc_html__( 'Designed with %1$s', 'ron' ),
|
|
$wordpress_link
|
|
);
|
|
?>
|
|
</p>
|
|
<!-- /wp:paragraph -->
|
|
</div>
|
|
<!-- /wp:group -->
|
|
</div>
|
|
<!-- /wp:group -->
|