forked from italia/design-scuole-wordpress-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·33 lines (26 loc) · 1.08 KB
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Design_Scuole_Italia
*/
get_header();
?>
<main id="main-container" class="main-container">
<?php get_template_part("template-parts/common/breadcrumb"); ?>
<section class="section bg-white">
<div class="container ">
<article class="article-wrapper">
<div class="box_404 text-center clearfix">
<h1 class="xl"><?php esc_html_e( '404', 'design_scuole_italia' ); ?></h1>
<h2><?php esc_html_e( 'Pagina non trovata', 'design_scuole_italia' ); ?></h2>
<p><?php _e( 'Oops! La pagina che cerchi non è stata trovata, <a href="javascript:history.back();" title="Torna alla pagina precedente">torna indietro</a> o utilizza il menu per continuare la navigazione.', 'design_scuole_italia' ); ?></p>
</div>
</article>
</div>
</section>
</main><!-- #main -->
<?php
get_footer();