
* Adding new theme Hall from @henriqueiamarino * Removed 'theme' attribute * Removed 'ref' attributes from navigation * Removed unused pattern * Cleaned up theme.json file (saved via CBT) * Set version to 1.0.0 * Fixed Header templates to use Site Title instead of Header. Styled Site Title to match Header block that was removed. * Updates from latest zip * Update image refs in readme * Add strict_types * Patternise 404 and home templates --------- Co-authored-by: Sarah Norris <sarah@sekai.co.uk>
34 lines
No EOL
1.2 KiB
PHP
34 lines
No EOL
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Title: Default footer
|
|
* Slug: hall/footer
|
|
* Categories: footer
|
|
* Block Types: core/template-part/footer
|
|
*/
|
|
declare( strict_types = 1 );
|
|
?>
|
|
|
|
<!-- 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', 'hall' ) ) . '" rel="nofollow">WordPress</a>';
|
|
echo sprintf(
|
|
esc_html__( 'Designed with %1$s', 'hall' ),
|
|
$wordpress_link
|
|
);
|
|
?>
|
|
</p>
|
|
<!-- /wp:paragraph -->
|
|
</div>
|
|
<!-- /wp:group -->
|
|
</div>
|
|
<!-- /wp:group -->
|