-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.php
24 lines (23 loc) · 921 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 <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body class="antialiased">
<div class="min-h-screen md:flex">
<div class="flex items-center justify-center w-full md:w-1/2">
<div class="max-w-sm m-8">
<div class="text-5xl text-black text-gray-800 border-b md:text-15xl border-primary">404</div>
<div class="w-16 h-1 my-3 bg-purple-light md:my-6"></div>
<p class="mb-8 text-2xl font-light text-gray-800 md:text-3xl"><?php _e( 'Sorry, the page you are looking for could not be found.', 'tm21' ); ?></p>
<a href="<?php echo get_bloginfo( 'url' ); ?>" class="px-4 py-2 text-white rounded bg-primary">
<?php _e( 'Go Home', 'tm21' ); ?>
</a>
</div>
</div>
</div>
</body>
</html>