mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-26 02:57:45 +01:00
2abcce6dfc
This brings `trunk`’s version of Twenty Twenty in-sync with GitHub.
For a complete list of changes since [46271], see 932b16248...dd7032f
Props anlino, ianbelanger, nielslange, acosmin, netweb, williampatton, adhitya03, phpdocs, acalfieri, itowhid06, littlebigthing, aristath, karmatosed, poena.
See #48110.
Built from https://develop.svn.wordpress.org/trunk@46357
git-svn-id: http://core.svn.wordpress.org/trunk@46156 1a063a9b-81f0-0310-95a4-ce76da25c4cd
37 lines
1016 B
PHP
37 lines
1016 B
PHP
<?php
|
|
/**
|
|
* The template for displaying the 404 template in the Twenty Twenty theme.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Twenty
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
get_header();
|
|
?>
|
|
|
|
<main id="site-content" role="main">
|
|
|
|
<div class="section-inner thin error404-content">
|
|
|
|
<h1 class="entry-title"><?php _e( 'Page Not Found', 'twentytwenty' ); // phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction -- core trusts translations ?></h1>
|
|
|
|
<div class="intro-text"><p><?php _e( 'The page you were looking for could not be found. It might have been removed, renamed, or did not exist in the first place.', 'twentytwenty' ); // phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction -- core trusts translations ?></p></div>
|
|
|
|
<?php
|
|
get_search_form(
|
|
array(
|
|
'label' => _x( '404 not found', 'Label', 'twentytwenty' ),
|
|
)
|
|
);
|
|
?>
|
|
|
|
</div><!-- .section-inner -->
|
|
|
|
<?php get_template_part( 'template-parts/footer-menus-widgets' ); ?>
|
|
|
|
</main><!-- #site-content -->
|
|
|
|
<?php
|
|
get_footer();
|