18 lines
463 B
PHP
Executable File
18 lines
463 B
PHP
Executable File
<?php get_header(); ?>
|
|
|
|
<main class="main page-404" role="main">
|
|
<div class="container">
|
|
|
|
<h1 class="text-2xl">404 - <?php _e('Page not found','barebones') ?></h1>
|
|
|
|
<div class="row">
|
|
<div class="col col--lg-12 col--md-12 col--sm-12 col--xs-12">
|
|
<p><?php esc_html_e( 'La pagina richiesta non esiste.', 'barebones' ); ?></p>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</main>
|
|
|
|
<?php get_footer(); ?>
|