samey/templates/pages/not_found.html

14 lines
306 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Not found</title>
{% include "fragments/common_headers.html" %}
</head>
<body>
<div><a href="/">&lt; To home</a></div>
<main>
<h1>Not found</h1>
<p>The requested resource could not be found.</p>
</main>
</body>
</html>