-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
layout: default | ||
permalink: /404/ | ||
title: 404 - Page Not Found | ||
class: NotFound | ||
#active: portfolio | ||
#excerpt: Ken has worked on many different type of projects with a focus on the self storage website niche. | ||
--- | ||
<div class="page NotFound"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-xs-12"> | ||
<h2>404 - Page Not Found</h2> | ||
<p>Sorry, the requested page is not found.</p> | ||
<p>Maybe one of these pages will help you find what you are looking for.</p> | ||
</div> | ||
<div class="col-xs-12"> | ||
{% include sitemap.html %} | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<ul> | ||
<li><a href="/">Home</a></li> | ||
<li><a href="/portfolio/">Portfolio</a></li> | ||
<li><a href="/blog/">Blog</a></li> | ||
<li><a href="/contact/">Contact</a></li> | ||
</ul> | ||
|
||
<h3>Posts</h3> | ||
<ul> | ||
{% for post in site.posts %} | ||
<li><a href="{{ post.url }}">{{ post.title }}</a></li> | ||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
layout: default | ||
permalink: /sitemap/ | ||
title: Sitemap | ||
class: Sitemap | ||
#active: portfolio | ||
#excerpt: Ken has worked on many different type of projects with a focus on the self storage website niche. | ||
--- | ||
<div class="page Sitemap"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-xs-12"> | ||
<h2>Sitemap</h2> | ||
</div> | ||
<div class="col-xs-12"> | ||
{% include sitemap.html %} | ||
</div> | ||
</div> | ||
</div> | ||
</div> |