blob: 73be2cd1cf7aebfc62cd8a9c0fbc3bf8b421251f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
title: Well, this is embarrassing.
description: Page not found — that’s a 404 :(
layout: blog
---
<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>
|