marianne_wordpress_theme/404.php

23 lines
417 B
PHP

<?php
/**
* The template for displaying the 404 pages (Not Found).
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Marianne
* @since Marianne 1.0
*/
get_header();
?>
<div id="content" class="site-content">
<main id="primary" class="site-primary" role="main">
<?php get_template_part( 'template-parts/content', 'none' ); ?>
</main>
</div>
<?php
get_sidebar();
get_footer();