-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path404.html
More file actions
144 lines (71 loc) · 3.09 KB
/
Copy path404.html
File metadata and controls
144 lines (71 loc) · 3.09 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en-us">
<!-- Modified from Hyde Jekyll Theme (gem package) -->
<head>
<link href="https://gmpg.org/xfn/11" rel="profile">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>
· Teach Bitcoin
</title>
<!-- CSS -->
<link rel="stylesheet" href="/assets/css/poole.css">
<link rel="stylesheet" href="/assets/css/syntax.css">
<link rel="stylesheet" href="/assets/css/hyde.css">
<!-- <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface"> -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700,800" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700" rel="stylesheet">
<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="Teach Bitcoin" href="/feed.xml">
</head>
<!--Teachbitcoin theme color -->
<body class="theme-base-ff">
<!-- Modified from Hyde Jekyll Theme (gem package) -->
<div class="sidebar">
<div class="container sidebar-sticky">
<div class="sidebar-about">
<h1>
<a href="/">
Teach Bitcoin
</a>
</h1>
<p class="lead">Protocol Training for Developers.</p>
</div>
<nav class="sidebar-nav">
<!-- <a class="sidebar-nav-item" href="/">Home</a> -->
<a class="sidebar-nav-item" href="/">Protocol Training</a>
<a class="sidebar-nav-item" href="/curriculum/">Curriculum</a>
<a class="sidebar-nav-item" href="/application/">Application</a>
<a class="sidebar-nav-item" href="/requirements/">Requirements</a>
<a class="sidebar-nav-item" href="/certification/">Certification</a>
<a class="sidebar-nav-item" href="/business/">Employee Training</a>
<a class="sidebar-nav-item" href="/instructor/">Instructor</a>
<a class="sidebar-nav-item" href="/talks/">Past Talks</a>
</nav>
<!-- <p>© 2019. All rights reserved.</p> -->
</div>
</div>
<div class="content container">
<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>
<div class="container">
<h1>404</h1>
<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
</div>
</div>
</body>
</html>