-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
32 lines (28 loc) · 1008 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
<?php get_header(); ?>
<!-- Page Header -->
<header class="masthead" style="background-image: url(<?php header_image(); ?>)">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-10 mx-auto">
<div class="site-heading">
<h1><?php bloginfo('name'); ?></h1>
<span class="subheading"><?php bloginfo('description'); ?></span>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto text-center">
<h2>404</h2>
<h5>Ops...não encontramos o que você procura</h5>
<br>
<?php get_template_part('template-parts/content', 'search'); ?>
</div>
</div>
</div>
<hr>
<?php get_footer(); ?>