44 lines
1.6 KiB
PHP
44 lines
1.6 KiB
PHP
<?php $version = "1.1.0"; ?>
|
|
<!DOCTYPE html>
|
|
<html <?php language_attributes(); ?>>
|
|
|
|
<head>
|
|
<meta charset="<?php bloginfo('charset'); ?>">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MxDev</title>
|
|
<?php wp_head(); // Crucial: Allows plugins to add scripts and styles ?>
|
|
</head>
|
|
|
|
<body <?php body_class(); ?>>
|
|
|
|
<?php get_header(); ?>
|
|
|
|
<main>
|
|
<div id="primary" class="content-area">
|
|
<main id="main" class="site-main">
|
|
|
|
<section class="error-404 not-found">
|
|
<header class="page-header">
|
|
<h2 class="page-title">
|
|
<?php esc_html_e("Oops! Vous ne devirez pas être ici!", 'your-theme-text-domain'); ?>
|
|
</h2>
|
|
<br>
|
|
<h2 class="page-title">
|
|
<?php esc_html_e("Faites comme si vous n'aviez rien vue...", 'your-theme-text-domain'); ?>
|
|
</h2>
|
|
</header>
|
|
<br>
|
|
<div class="page-content">
|
|
<img src="/wp-content/themes/mxdev/img/mariofpeach.gif">
|
|
<p><?php esc_html_e("Cette page n'existe pas, laissons Mario et Peach tranquille!", 'your-theme-text-domain'); ?>
|
|
</p>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
</main>
|
|
|
|
<?php get_footer('layout', 'footer'); ?>
|
|
</body>
|
|
|
|
</html>
|