18 lines
288 B
HTML
18 lines
288 B
HTML
|
---
|
||
|
title: Page not found
|
||
|
layout: null
|
||
|
---
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
{% include header.html %}
|
||
|
<link rel="stylesheet" href="/css/404.css" />
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>This page was lost in the vampire castle...</h1>
|
||
|
<a href="/">Return</a>
|
||
|
</body>
|
||
|
</html>
|