File tree 3 files changed +30
-0
lines changed
3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 75
75
Mandolino : //g14n.info
76
76
` ` `
77
77
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
+
78
92
[ page_template ] : http://g14n.info/templates/page " page template "
79
93
[ g14n.info-jekyll-includes ] : https://github.com/fibo/g14n.info-jekyll-includes " g14n.info-jekyll-includes "
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change 7
7
< head >
8
8
{% include common/meta.html %}
9
9
{% include common/favicon.html %}
10
+ {% include common/fontawesome.html %}
10
11
{% include common/cookieconsent.html %}
11
12
{% include common/style.html %}
12
13
</ head >
You can’t perform that action at this time.
0 commit comments