forked from wncc/WnCC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
executable file
·37 lines (35 loc) · 897 Bytes
/
404.html
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
35
36
37
---
layout: default
title: Error-404
permalink: /404.html
---
<head>
<!-- some other meta -->
{% if page.url == "/404.html" %}
<meta http-equiv="refresh" content="5; url={{ '/' | prepend: site.baseurl }}">
{% endif %}
<!-- some other stuff like link or script -->
</head>
<body>
<!-- Three -->
<section id="three" class="wrapper style1">
<div class="container">
<div class="row">
<div class="8u">
<section>
<a href="#" class="image fit"><img src="{{ '/images/404.png' | prepend: site.baseurl }}" alt="" /></a>
</section>
</div>
<div class="4u">
<section>
<h3>This page is unavailable!</h3>
<p>This page does not exist. You are being redirected to the home page.</p>
<ul class="actions">
<li><a href="/" class="button special big">Home</a></li>
</ul>
</section>
</div>
</div>
</div>
</section>
</body>