Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
my-custom-theme/404.php /
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
25 lines (21 sloc)
708 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * The template for displaying 404 page. | |
| * | |
| * @copyright Copyright (c) 2020, Danny Cooper | |
| * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License | |
| */ | |
| get_header(); ?> | |
| <div class="site-content"> | |
| <article class="no-results"> | |
| <header class="entry-header"> | |
| <h1 class="page-title"><?php esc_html_e( 'Nothing Found Here', 'my-custom-theme' ); ?></h1> | |
| </header><!-- .entry-header --> | |
| <div class="entry-content"> | |
| <p><?php esc_html_e( 'It looks like nothing was found at this location.', 'my-custom-theme' ); ?></p> | |
| </div><!-- .entry-content --> | |
| </article><!-- .no-results --> | |
| </div><!-- .site-content --> | |
| <?php | |
| get_sidebar(); | |
| get_footer(); |