-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.php
35 lines (33 loc) · 1.24 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
<?php
get_header();
?>
<main id="site-content" role="main">
<div class="hero">
<div class="hero-box">
<div class="container">
<header class="post-cover" style="background-image: url(<?php echo KAGAMI_FALLBACK_PAGE_NOT_FOUND_COVER_URL ?>)">
<div class="content">
<div class="post-title-group">
<a class="post-title-link" href="#"><h2 class="post-title"><?php _e( '404: Page not found', 'kagami' ) ?></h2></a>
<div class="post-meta">
What a pity !
</div>
</div>
</div>
</header>
<div class="hero-box-summary">
<p>Try to search for find life, the universe and everything ?</p>
<a class="hero-btn btn" href="/"><?php _e( 'Back to Home', 'kagami' ) ?></a>
</div>
</div>
</div>
<div class="hero-background-wrapper">
<div class="hero-background" style="background-image: url(<?php echo KAGAMI_FALLBACK_PAGE_NOT_FOUND_COVER_URL ?>)"></div>;
</div>
</div>
<div class="fill">
</div>
</main>
<?php
get_footer();
?>