-
Notifications
You must be signed in to change notification settings - Fork 10
/
404.html
35 lines (27 loc) · 1.07 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
---
layout: default
---
<div class="container text-center">
<br><br>
<h2>Oops, that's a no GO ! <a href="https://en.wikipedia.org/wiki/HTTP_404" target="blank" style="font-size:16px; vertical-align: top;">(404 Page Not Found)</a></h2>
<br>
<p>The page you are looking for does not exist but you can find what you were looking for below:</p>
<br><br>
<div id="search-searchbar"
style="border-radius:25px 0px 0px 25px; width:100%"></div>
<div class="post-list" id="search-hits" style="text-align: left">
{% for post in site.posts %}
<div class="post-item">
{% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %}
<span class="post-meta">{{ post.date | date: date_format }}</span>
<h2>
<a class="post-link" href="{{ post.url | relative_url }}">
{{ post.title | escape }}
</a>
</h2>
<div class="post-snippet">{{ post.excerpt }}</div>
</div>
{% endfor %}
</div>
{% include algolia.html %}
</div>