houdini/public/404.html
Bradley M. Kuhn dff436355d Relicense all .html files as CC-1.0
The primary license of the project is changing to:
  AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later

with some specific files (including HTML files) to be licensed under the one
of two licenses:
   CC0-1.0
   LGPL-3.0-or-later

This commit is one of the many steps to relicense the entire codebase.

Documentation granting permission for this relicensing (from all past
contributors who hold copyrights) is on file with Software Freedom
Conservancy, Inc.
2018-03-25 15:10:40 -04:00

49 lines
884 B
HTML
Executable file

<!-- License: CC0-1.0 -->
<head>
<link rel="icon" href="/favicon.ico"/>
<link rel="stylesheet" type="text/css" href="https://unpkg.com/normalize.css@5.0.0">
<title>Houdini Project - 404</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body>
<main>
<div>
<a title='Back to homepage' href='/'>
<img src='/svgs/houdini-logo.svg'>
</a>
<h4>Oops... couldn't find that page.</h4>
</div>
</main>
</body>
<style>
* {
box-sizing: border-box;
}
body {
color: #0176f5;
font-family:
-apple-system,
BlinkMacSystemFont,
Segoe UI,
Helvetica Neue,
Helvetica,
OpenSans,
sans-serif;
}
main {
height: 100%;
padding: 16px;
position: relative;
}
div {
width: 100%;
text-align: center;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
}
</style>