-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
22 lines (20 loc) · 729 Bytes
/
404.php
File metadata and controls
22 lines (20 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package WordPress
* @subpackage TEDxTrento
* @since
*/
get_header(); ?>
<div class="row home-background home-background-red row-404 negative-bottom">
<div class="col-sm-10 col-md-8 col-sm-offset-1 col-md-offset-2 partners-intro text-center">
<h2>ERRORE 404</h2>
<p>Ciao, grazie per la visita.<br/> Sfortunatamente sembra che la pagina che stai cercando non esista!<br/>
Come sei arrivato qui?</p>
<p><a href="<?php echo home_url(); ?>/contatti">Contattaci</a> se sei arrivato qui seguendo un collegamento su questo sito.</p>
<br>
<p><a href="<?php echo home_url(); ?>">Torna alla home</a></p>
</div>
</div>
<?php get_footer(); ?>