-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path404.php
30 lines (30 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>Error 404 — <?php bloginfo('name');?></title>
<?php wp_head();?>
</head>
<body class="front-page">
<div class="container" align="center">
<div class="row" align="center">
<div class="col-md-3"></div>
<div class="col-md-6">
<h1 style="color:#ff4081;">Error 404</h1>
<form role="search" method="get" action="<?php echo home_url( '/' ); ?>">
<div class="media">
<div class="media-object pull-right">
<button type="submit" class="btn btn-brand-accent"> <span class="icon">search</span> </button>
</div>
<div class="media-inner">
<input class="form-control" type="search" placeholder="Search my archive....." value="<?php echo get_search_query() ?>" name="s">
</div>
</div>
</form>
<p><a href="<?php echo home_url('/');?>">« Back To Home</a></p>
</div>
<div class="col-md-3"></div>
</div>
</div>
<?php get_footer(); ?>