-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
51 lines (37 loc) · 1.38 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* The template for displaying 404 pages (not found).
*
* @package fedoraid
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<div class="container">
<div class="row">
<div class="col s12">
<section class="error-404 not-found">
<header class="page-header-404">
<div align="center">
<img src="http://fedora.or.id/wp-content/uploads/2015/06/morpheus_meme.jpg" />
</div>
<h3 class="page-title"><?php esc_html_e( 'Oops! That page can’t be found.', 'fedora-id' ); ?></h3>
</header><!-- .page-header -->
<div class="page-content">
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'fedora-id' ); ?></p>
<?php get_search_form(); ?>
<?php if ( fedora_id_categorized_blog() ) : // Only show the widget if site has multiple categories. ?>
<?php endif; ?>
</div><!-- .page-content -->
</section><!-- .error-404 -->
</div>
</div>
</div>
<div class="fixed-action-btn" style="bottom: 45px; right: 24px;">
<a class="btn-floating btn-large blue" href="<?php echo site_url(); ?>" title="Back to Home">
<i class="mdi-action-home"></i>
</a>
</div>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>