add error pages

This commit is contained in:
Nico Jensen 2019-04-01 16:40:23 +02:00
parent ff585eaa31
commit 84ae44c720
2 changed files with 28 additions and 0 deletions

14
404.html Normal file
View file

@ -0,0 +1,14 @@
---
layout: default
title: 404 - Page not found!
permalink: /404.html
---
<article class="post">
<header class="post-header wrapper">
<h2 class="post-title">404 - Page not found!</h2>
</header>
<section class="post-content wrapper">
<p>Looks like you've followed a broken link or entered a URL that doesn't exist on this site.</p>
<p><a href="/">Back to my Site</a></p>
</section>
</article>

14
500.html Normal file
View file

@ -0,0 +1,14 @@
---
layout: default
title: 500 - Internal Server Error
permalink: /500.html
---
<article class="post">
<header class="post-header wrapper">
<h2 class="post-title">500 - Internal Server Error</h2>
</header>
<section class="post-content wrapper">
<p><a href="/">Back to my Site</a></p>
</section>
</article>