-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
152 lines (104 loc) · 4.75 KB
/
Copy path404.html
File metadata and controls
152 lines (104 loc) · 4.75 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
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404</title>
<meta name="description" content="Javascriptress | Rubyist | Nacho Monster">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" media="all" href="/css/style.css" />
<link rel="stylesheet" type="text/css" media="all" href="/css/jquery.mmenu.all.css" />
<link rel="stylesheet" href="/css/highlightjs.piperita.css">
<!-- Favicons generated at http://realfavicongenerator.net/ -->
<link rel="apple-touch-icon" sizes="180x180" href="https://minaslater.blog/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://minaslater.blog/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://minaslater.blog/favicons/favicon-16x16.png">
<link rel="manifest" href="https://minaslater.blog/favicons/site.webmanifest">
<link rel="mask-icon" href="https://minaslater.blog/favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<nav id="my-menu">
<div>
<p>Mina Slater</p>
<ul class="pages">
<li><a href="/"><i class="fa fa-home"></i> Home</a></li>
<li><a href="/posts/"><i class="fa fa-archive"></i> All Posts</a></li>
<li><a href="/search/"><i class="fa fa-search"></i> Search</a></li>
</ul>
<p class="links">
<a href="https://www.twitter.com/Minar528" target="_new"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/minayslater/" target="_new"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/minaslater" target="_new"><i class="fa fa-github-alt"></i></a>
<a href="https://www.instagram.com/Minar528" target="_new"><i class="fa fa-instagram"></i></a>
<a href="/feed.xml" target="_new"><i class="fa fa-rss"></i></a>
</p>
</div>
</nav>
<div class="menu-button" href="#menu"><i class="fa fa-bars"></i></div>
<div class="page-content">
<div class="wrap">
<div class="container-fluid index error">
<div class="row">
<div class="col-md-12 content-panel articles">
<h1 class="header author-header">404</h1>
<div class="error-text">
Sorry but this page doesn't seem to exist.
</div>
<div class="error-text">
<a href="/">Home</a> |
<a href="/posts/">All Posts</a> |
<a href="/search/">Search</a>
</div>
<p class="links">
<a href="https://www.twitter.com/Minar528" target="_new"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/minayslater/" target="_new"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/minaslater" target="_new"><i class="fa fa-github-alt"></i></a>
<a href="https://www.instagram.com/Minar528" target="_new"><i class="fa fa-instagram"></i></a>
<a href="/feed.xml" target="_new"><i class="fa fa-rss"></i></a>
</p>
</div>
</div>
<div class="content-panel related">
<div class="related-header">
<a href="/2020/01/10/conference-speaking-as-a-codenewbie/">Suggested Article</a>
</div>
<div class="title">
<a href="/2020/01/10/conference-speaking-as-a-codenewbie/">Too Beginner to be a Conference Speaker? NEVER!</a>
</div>
<div class="excerpt">
When I changed careers into tech, I had a mental retro about what I could’ve done better in my past career, coming to the conclusion that: I didn’t stay connected...
<a href="/2020/01/10/conference-speaking-as-a-codenewbie/">Continue Reading</a>
</div>
</div>
</div>
</div>
</div>
<div class="footer clearfix">
<div class="col-md-7">
Jekyll template created by <a href="https://twitter.com/_JacobTomlinson">Jacob Tomlinson</a>
</div>
<div class="col-md-5">
©Mina Slater 2018
</div>
</div>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="/js/jquery.mmenu.min.all.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.7/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script type="text/javascript">
$(document).ready(function() {
$("#my-menu").mmenu().on( "closed.mm", function() {
$(".menu-button").show();
});
$(".menu-button").click(function() {
$(".menu-button").hide();
$("#my-menu").trigger("open.mm");
});
});
</script>
</body>
</html>