-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.php
37 lines (27 loc) · 954 Bytes
/
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
34
35
36
37
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Dez
*/
get_header();
?>
<main id="primary" class="site-main">
<section class="error-404 not-found">
<header class="entry-header">
<h1 class="entry-title">Ops, algo deu errado…</h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p>A página que você tentou acessar não existe, foi excluída ou está em outro lugar. Use a pesquisa para tentar encontrá-la:</p>
<?php
get_search_form();
?>
<p>Se preferir, dê uma olhada no <a href="/arquivo/">mapa do site</a> ou retorne à <a href="/">página inicial</a>.</p>
<p>Acredita ter se deparado com um erro? <a href="mailto:[email protected]">Mande um e-mail</a> (e obrigado!).
</div><!-- .page-content -->
</section><!-- .error-404 -->
</main><!-- #main -->
<?php
get_footer();