blob: 891ef0805f7d908ea91d132ca8e5a9ff0e1113f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
title: 404 Not Found
description: Page not found — that’s a 404 :(
layout: master
permalink: /404.html
---
<h1>404 Not Found</h1>
<p>Perhaps you'd be interested in one of the following?</p>
<ul>
{% for post in site.posts limit:5 %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
|