forked from arrizalamin/MediumPress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
20 lines (20 loc) · 845 Bytes
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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.0">
<title>404 Error - <?php echo bloginfo('name') ?></title>
<link rel="stylesheet" href="<?php echo bloginfo('stylesheet_directory').'/css/404.css' ?>">
<link href='http://fonts.googleapis.com/css?family=Droid+Sans:700,400' rel='stylesheet' type='text/css'/>
</head>
<body style="background-image: url(<?php echo bloginfo('stylesheet_directory').'/images/404.jpg' ?>)">
<div class="container">
<div class="error-message">
<div class="error-message-wrap">
<p>Sorry, but nothing exists here.</p>
<span class="error-small">Find something <a href="<?php echo bloginfo('url') ?>">interesting to read</a>.</span>
</div>
</div>
</div>
</body>
</html>