-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy path404.html
More file actions
49 lines (43 loc) · 1.17 KB
/
404.html
File metadata and controls
49 lines (43 loc) · 1.17 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
---
layout: default
title: "404: Page not found"
permalink: 404.html
---
<header class="logo">
<div class="home-header-container">
<a href="#" class="help">{% t global.support %}</a>
<a href="{{ site.baseurl }}/">
<img
src="{{ site.baseurl }}/assets/images/logo.png"
alt="{{ site.title }}"
/>
</a>
</div>
</header>
<div class="page">
<h1 class="page-title">404: Page not found</h1>
<p class="lead">
Sorry, we've misplaced that URL or it's pointing to something that doesn't
exist. <a href="{{ site.baseurl }}">Head back home</a> to try finding it
again.
</p>
</div>
{% assign sorted = site.tags | sort %}
<div class="post-list home">
<ul class="product-list">
{% for tag in sorted %}
<li class="product">
<h2>{{tag[0]}}</h2>
{% assign pages_list = tag[1] | sort: 'title' | sort: 'sort_order' %}
<ul class="doc">
{% for post in pages_list %}
<li class="doc-title">
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
</div>
<div class="home-footer">{% include footer.html %}</div>