Skip to content

Commit c49322e

Browse files
committed
Add 404 page, closes johno#63.
1 parent b14cfdb commit c49322e

File tree

3 files changed

+32
-1
lines changed

3 files changed

+32
-1
lines changed

404.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: center
3+
permalink: /404.html
4+
---
5+
6+
# 404
7+
8+
Sorry, we can't seem to find this page's pixylls.
9+
10+
<div class="mt3">
11+
<a href="{{ site.baseurl }}" class="button button-blue button-big">Home</a>
12+
<a href="{{ site.baseurl }}/contact/" class="button button-blue button-big">Contact</a>
13+
</div>

_layouts/center.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html>
3+
{% include head.html %}
4+
<body>
5+
<div class="site-wrap center">
6+
{% include header.html %}
7+
8+
<div class="post p2 p-responsive wrap" role="main">
9+
<div class="measure">
10+
{{ content }}
11+
</div>
12+
</div>
13+
</div>
14+
15+
{% include footer.html %}
16+
</body>
17+
</html>

css/pixyll.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ body {
110110
color: #333;
111111
}
112112

113-
.pagination {
113+
.pagination,
114+
.button {
114115
font-size: 16px;
115116
font-family: 'Lato', 'Helvetica Neue', Helvetica, sans-serif;
116117
font-weight: 300;

0 commit comments

Comments
 (0)