24 lines
881 B
PHP
24 lines
881 B
PHP
<?php
|
|
get_header();
|
|
?>
|
|
|
|
<section class="error_404 block-content-page-header container">
|
|
<div class="block-content-page-header__content">
|
|
<div class="section_titling section_titling--left">
|
|
<h1 class="section_titling__title"><?php echo __("Erreur 404 ", "homegrade-theme__texte-fonctionnel") ?></h1>
|
|
<h2 class="section_titling__subtitle"><?php echo __("Oups… Il semblerait que la page est indisponible.", "homegrade-theme__texte-fonctionnel") ?></h2>
|
|
</div>
|
|
|
|
|
|
|
|
<a href="<?php echo get_bloginfo('url'); ?>" class="cta cta--secondary cta--button">
|
|
<?php _e('Retourner à la page d\'acceuil', 'homegrade-theme__texte-fonctionnel'); ?>
|
|
</a>
|
|
</div>
|
|
|
|
<img decoding="async" class="block-content-page-header__page-icon" src="<?php echo get_template_directory_uri() . "/resources/img/illustrations/homegrade_error-404.svg" ?>" alt="">
|
|
</section>
|
|
|
|
<?php
|
|
get_footer();
|
|
?>
|