mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 12:33:02 +02:00
This commit adds a landing page, generated from the top README.md. It is a temporary fix before adding a proper web ui. Run ./gen.sh from the directory to update index.html using the template. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
16 lines
318 B
HTML
16 lines
318 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Error</title>
|
|
<style>
|
|
html { color-scheme: light dark; }
|
|
body { width: 35em; margin: 0 auto;
|
|
font-family: Tahoma, Verdana, Arial, sans-serif; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>An error occurred.</h1>
|
|
<p>Sorry, the page you are looking for is currently unavailable.</p>
|
|
</body>
|
|
</html>
|