Skip to content

Commit 07f46d8

Browse files
committed
Merge commit '0d1fb61e2bb7b45a72983b2266571f1ef3357578'
2 parents b89726e + 0d1fb61 commit 07f46d8

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

docs/_layouts/common/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,19 @@ nav:
7575
Mandolino: //g14n.info
7676
```
7777
78+
## page-not-found
79+
80+
To be used only for 404 page, create a file *404.html* like this
81+
82+
```
83+
---
84+
layout: common/page-not-found
85+
title: Page not found
86+
permalink: /404.html
87+
---
88+
89+
<h1>Page not found</h1>
90+
```
91+
7892
[page_template]: http://g14n.info/templates/page "page template"
7993
[g14n.info-jekyll-includes]: https://github.com/fibo/g14n.info-jekyll-includes "g14n.info-jekyll-includes"
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
{% if site.lang %}
3+
<html lang="{{ site.lang }}">
4+
{% else %}
5+
<html lang="en">
6+
{% endif %}
7+
<head>
8+
{% include common/favicon.html %}
9+
{% include common/fontawesome.html %}
10+
{% include common/style.html %}
11+
</head>
12+
<body>
13+
<main class="page-not-found">{{ content }}</main>
14+
</body>
15+
</html>

docs/_layouts/common/page.html

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<head>
88
{% include common/meta.html %}
99
{% include common/favicon.html %}
10+
{% include common/fontawesome.html %}
1011
{% include common/cookieconsent.html %}
1112
{% include common/style.html %}
1213
</head>

0 commit comments

Comments
 (0)