-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
29 lines (28 loc) · 958 Bytes
/
404.html
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
---
layout: secondary-page
---
<div id="not-found-page" class="container">
<div class="row">
<div class="col-xs-12 col-md-6">
<h1>Oops!</h1>
<h4>We can't seem to find the page you're looking for. You can check to see if the <b>URL</b> was spelled correctly or head back <a href="{{ site.pathname }}/">Home</a>.</h4>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<p>Or how about you try out some of our categories or tags instead?</p>
</div>
<div class="col-xs-12 col-md-6">
<h4>Categories:</h4>
{% for category in site.categories %}
<li><a href="{{ category | first | downcase | prepend: "/" | prepend: site.pathname }}">{{ category | first }}</a></li>
{% endfor %}
</div>
<div class="col-xs-12 col-md-6">
<h4>Tags:</h4>
{% for tag in site.tags %}
<li><a href="{{ tag | first | prepend: '/tag/' | prepend: site.pathname }}">{{ tag | first }}</a></li>
{% endfor %}
</div>
</div>
</div>