-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
58 lines (57 loc) · 2.25 KB
/
404.html
File metadata and controls
58 lines (57 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Page Not Found | So You Want To Do Image Analysis With Python</title>
<meta
name="description"
content="Fallback page for missing SYWTDIAWP course content."
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Source+Serif+4:opsz,wght@8..60,400;600&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/github-dark.min.css"
/>
<link rel="stylesheet" href="assets/css/site.css" />
</head>
<body>
<a class="skip-link" href="#main-content">Skip to content</a>
<header class="site-header">
<div class="wrap">
<div class="header-shell">
<a class="brand" href="index.html">SYWTDIAWP</a>
<nav class="site-nav" aria-label="Primary">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="index.html#modules">Modules</a>
<a class="nav-link" href="resources.html">Resources</a>
<a class="nav-cta" href="tutorials/install-python.html">Start here</a>
</nav>
</div>
</div>
</header>
<main class="page-main" id="main-content">
<div class="wrap">
<section class="page-hero">
<p class="page-kicker">404</p>
<h1>That page wandered off</h1>
<p class="lead">
The link may be old, the page may have moved, or the website may be
gently reminding you that hyperlinks are a social contract.
</p>
<div class="hero-actions">
<a class="button button-primary" href="index.html">Return home</a>
<a class="button button-secondary" href="resources.html">Open resources</a>
</div>
</section>
</div>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
</body>
</html>