-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
28 lines (28 loc) · 1.18 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
<?php get_header(); ?>
<?php get_template_part('block-menu'); ?>
<main>
<!-- Header -->
<header class="container-fluid pt3 pt7-sm pb3 pb5-sm">
<div class="row bottom-xs middle-sm">
<div class="col-xs">
<div class="wrap pb5 pt3">
<div class="row">
<article class=" col-xs-12">
<div class="p05">
<div class="row middle-xs">
<div class="col-xs-12 col-md-7">
<p class="t5 w100 ff2">Erro 404!</p>
<p class="t5 w100 ff2">Desculpe, não encontramos essa página.</p>
<a href="<?php echo home_url(); ?>"><button class="btn-txt">Voltar para a home</button></a>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</header>
<?php get_template_part('block-apoie'); ?>
</main>
<?php get_footer(); ?>