add error pages
This commit is contained in:
parent
ff585eaa31
commit
84ae44c720
2 changed files with 28 additions and 0 deletions
14
404.html
Normal file
14
404.html
Normal 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
14
500.html
Normal 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>
|
Loading…
Add table
Reference in a new issue