-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
32 lines (32 loc) · 827 Bytes
/
404.html
File metadata and controls
32 lines (32 loc) · 827 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
---
title: 404
---
<!DOCTYPE HTML>
<!-- vim: set foldmarker=[[[,]]]: -->
<html lang="it">
<!-- head [[[ -->
<head>
{% include head.html %}
</head>
<!-- /head ]]] -->
<!-- body [[[ -->
<body>
<div id="top"></div>
<div id="tux"></div>
<div id="surf"></div>
<div id="text">
<h1>404</h1>
<p>Non c'è niente qui!</p>
</div>
<div id="paw">
<a href="/"><img src="assets/img/zampa.png" alt="{{ site.name }} - Homepage"></a>
</div>
<script>
$("#text").hide();
$("#tux").delay(1000).animate({height: "55px"}, 1000);
$("#text").delay(2000).fadeIn("slow");
$("#paw").delay(2050).fadeIn(800, "linear");
</script>
</body>
<!-- /body ]]] -->
</html>