forked from jwillmer/jekyllDecent
-
Notifications
You must be signed in to change notification settings - Fork 10
/
404.html
39 lines (35 loc) · 1.35 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
---
layout: default
title: 404 - Page not found
visible: false
---
<div id="content" class="content">
<header class="post-header short-diver">
<h1 class="post-title">Page not found</h1>
<p>The page you requested could not be found.</p>
</header>
<h3>Similar URLs</h3>
<ul class="category recent-posts">
<ul class="urlSuggestions"></ul>
</ul>
</div>
<script id="article-template" type="text/x-custom-template">
<li>
<div class="article">
<article class="article" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<span class="title"><a itemprop="name" href="" title=""></a></span>
<time class="date" itemprop="datePublished" datetime=""></time>
</header>
</article>
</div>
</li>
</script>
<script src="{{ site.github.url | prepend: site.baseurl }}/js/jquery-1.12.0.min.js"></script>
<script src="{{ site.github.url | prepend: site.baseurl }}/js/fuzzyset.js"></script>
<script src="{{ site.github.url | prepend: site.baseurl }}/js/offline.js"></script>
<script>
$(document).ready(function () {
insertSimilarUrls(String(window.location.href), "{{ site.github.url | prepend: site.baseurl }}/api/posts.json", "#article-template", ".urlSuggestions", 10);
});
</script>