-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
24 lines (23 loc) · 900 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/style.css" type="text/css">
<link rel="stylesheet" href="<?php echo bloginfo('stylesheet_directory').'/css/404.css' ?>">
</head>
<body>
<div class="container">
<div class="error-message">
<div class="error-message-wrap">
<h1>404</h1>
<p>Sorry, nothing exists here.</p>
<span class="error-small">Find something <a href="<?php echo bloginfo('url') ?>">interesting to read</a>.</span>
</div>
</div>
</div>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script>
</body>
</html>