-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy path404.html
More file actions
26 lines (21 loc) · 706 Bytes
/
404.html
File metadata and controls
26 lines (21 loc) · 706 Bytes
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
---
title: Fake news not found
permalink: 404.html
layout: default
image: "/uploads/og-image.jpg"
sitemap: false
---
<div class="page">
<h1 class="page-title">404: Fake news not found</h1>
<p class="lead">The page you're looking for doesn't exist or has moved.</p>
<p>Try searching above, or check out a recent post:</p>
<ul class="not-found-posts">
{% for post in site.posts limit:5 %}
<li>
<a href="{{ post.url }}">{{ post.title }}: {{ post.description }}</a>
<span class="not-found-posts__date">{{ post.date | date: "%b %-d, %Y" }}</span>
</li>
{% endfor %}
</ul>
<p style="margin-top: 2em;"><a href="{{ site.baseurl }}/">← Back to homepage</a></p>
</div>