forked from DeveloperCielo/developercielo.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
44 lines (38 loc) · 1.22 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
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>