-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
35 lines (26 loc) · 862 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
<?php /* Template Name: 404 */ ?>
<?php get_header() ?>
<div class="notFound">
<?php if ( is_404() ) : ?>
<div class="container404">
<div class="container">
<div class="col-md-12">
<div class="p404">
<span class="p404title">404</span>
<span class="message">Pagina non trovata!</span>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<?php endif; ?>
<div class="container">
<div class="col-md-12">
<h2>Trovato niente?</h2>
<p>Prova fare una ricerca, potresti trovare quello che cerchi.</p>
</div>
<div class="col-md-12"><?php get_search_form(); ?></div>
<img alt="John" height="250" src="http://i.imgur.com/H1dY8lY.gif">
</div>
</div>
<?php get_footer() ?>