forked from le4ker/personal-jekyll-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherror.html
More file actions
34 lines (20 loc) · 660 Bytes
/
error.html
File metadata and controls
34 lines (20 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!-- 404 Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
{% include head.html %}
<body>
{% include navigation.html %}
<section class="container content-section text-center">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-xs-10 col-xs-offset-1">
<h1><strong>{{ page.title }}</strong></h1>
{{ page.content | markdownify }}
<img class="img-responsive center-block fourofour" src="{{site.baseurl}}{{ site.404-img }}" alt="">
</div>
</div>
</section>
{% include footer.html %}
{% include js.html %}
</body>
</html>
<!-- 404 Layout End -->