-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path404.html
67 lines (60 loc) · 1.92 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
layout: default
title: "HTTP 404 - Page Not Found!"
description: "The page your looking for does not exist, or might have been moved."
has_full_title: true
---
<div class="post">
<h1>404 Not Found</h1>
<p>
Oops! The page you want is missing. I might have deleted it for some reason,
sorry about that.
</p>
<div style="font-size: 300%; color: #999;" class="content">
(⌣́_⌣̀)
</div>
<div class="archive_list content">
<h2>Recent Blog Articles</h2>
<div class="container">
{% for post in site.posts limit:3 %}
<div class="item">
<a class="related-link" href="{{ site.baseurl }}{{ post.url }}">
{{ post.title | xml_smart_escape }}
</a>
<div class="related-meta">
<div class="tags">
{% assign had_first_tag = false %} {% for tag in post.tags %} {% unless had_first_tag %}{% assign had_first_tag = true %}{% else %} | {% endunless -%}
<a
href="{{ tag | downcase | uri_escape | prepend: '/blog/tag/' | prepend: site.baseurl }}"
class="tag"
>{{ tag }}</a
>
{% endfor %}
</div>
<time>{{ post.date | date_to_long_string }}</time>
</div>
<div class="clearfix"></div>
</div>
{% endfor %}
<div class="clearfix"></div>
</div>
</div>
<div class="archive_list content">
<h2>Recent Wiki Articles</h2>
<div class="container">
{% assign wikis = site.wiki | rss_filter_and_sort: 3 -%}
{% for post in wikis %}
<div class="item">
<a class="related-link" href="{{ site.baseurl }}{{ post.url }}">
{{ post.title | xml_smart_escape }}
</a>
<div class="related-meta">
<time>{{ post.date | date_to_long_string }}</time>
</div>
<div class="clearfix"></div>
</div>
{% endfor %}
<div class="clearfix"></div>
</div>
</div>
</div>