GIF: add skeleton route at /gif

This commit is contained in:
Evan Hahn 2023-08-11 15:02:03 -05:00
parent de0dfda3a7
commit 966a56433d
1 changed files with 18 additions and 0 deletions

18
public/gif/index.html Normal file
View File

@ -0,0 +1,18 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>formats.exposed/gif</title>
<noscript>
<meta http-equiv="refresh" content="0; url=.." />
</noscript>
<link rel="stylesheet" href="../common/global.css">
<link rel="stylesheet" href="gif.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="error" hidden>Failed to parse GIF</div>
<div id="explorer" hidden></div>
<script src="gif.js" type="module"></script>
</body>
</html>