-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
62 lines (53 loc) · 2.14 KB
/
Copy path404.html
File metadata and controls
62 lines (53 loc) · 2.14 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WACO 404 Page</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<link rel="stylesheet" href="assets/css/waco-pages.css?v=2.2.0" />
</head>
<body>
<!--
WACO 404 PAGE v1.9.0
- No header / navigation / footer
- Error layout
- Quick links
- Search form
-->
<main class="waco-page waco-error-page">
<section
class="waco-error-section"
style="background: linear-gradient(90deg, rgba(14, 24, 19, 0.82) 0%, rgba(14, 24, 19, 0.58) 50%, rgba(14, 24, 19, 0.22) 100%), url('assets/images/archive/error-hero.jpg') center / cover no-repeat;"
>
<div class="waco-container">
<div class="waco-error-card waco-reveal">
<span class="waco-eyebrow">Page Not Found</span>
<div class="waco-error-code">404</div>
<h1>Sorry, this page cannot be found.</h1>
<p>
The page may have been moved, deleted, or the address may be incorrect. Use the quick links below or search again.
</p>
<form class="waco-error-search" action="search.html" method="get">
<input name="s" type="search" placeholder="Search this website..." />
<button class="waco-btn waco-btn-primary" type="submit">Search</button>
</form>
<div class="waco-error-links">
<a href="products.html">View Products</a>
<a href="blog.html">Read Blog</a>
<a href="projects.html">View Projects</a>
<a href="faq.html">FAQ</a>
<a href="downloads.html">Downloads</a>
</div>
<div class="waco-btn-group">
<a class="waco-btn waco-btn-light" href="/">Back to Home</a>
<a class="waco-btn waco-btn-ghost-light" href="products.html">Browse Products</a>
</div>
</div>
</div>
</section>
</main>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script src="assets/js/waco-pages.js?v=2.2.0"></script>
</body>
</html>