-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
37 lines (33 loc) · 1.69 KB
/
Copy path404.php
File metadata and controls
37 lines (33 loc) · 1.69 KB
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
36
37
<?php
/**
* The template for displaying all 404
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package wp_code_stocks
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<?php wp_head(); ?>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class='404'>
<div class='inner h-64 w-full flex justify-center items-center flex-col text-gray-600'>
<span class='inline-block text-4xl font-bold py-12'>404 page not found...</span>
<a href="/" class='inline-block c-hover-action font-bold flex flex-col items-center justify-center'>
<svg class="alert" width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M68 40C68 55.464 55.464 68 40 68C24.536 68 12 55.464 12 40C12 24.536 24.536 12 40 12C55.464 12 68 24.536 68 40ZM39.9678 21.5C41.3485 21.5 42.4678 22.6193 42.4678 24V46.4C42.4678 47.7807 41.3485 48.9 39.9678 48.9C38.5871 48.9 37.4678 47.7807 37.4678 46.4V24C37.4678 22.6193 38.5871 21.5 39.9678 21.5ZM42.4678 53.5999C42.4678 52.2192 41.3485 51.0999 39.9678 51.0999C38.5871 51.0999 37.4678 52.2192 37.4678 53.5999V55.1999C37.4678 56.5806 38.5871 57.6999 39.9678 57.6999C41.3485 57.6999 42.4678 56.5806 42.4678 55.1999V53.5999Z" fill="#718096" />
</svg>
<span class='inline-block'>Back to Top</span>
</a>
</div>
</div>
</body>