-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (27 loc) · 979 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Raw Preview</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="raw image,raw,cr2,cr3,nef,pef,dng,arw,orf,javascript,catdad">
<link rel="stylesheet" type="text/css" href="src/style.css">
</head>
<body>
<div id="unsupported" class="unsupported limit">
<p>This browser is not supported.</p>
<p>See the <a href="https://github.com/catdad-experiments/raw-preview">GitHub page</a> for more info.</p>
</div>
<div id="app" class="app"></div>
<script type="module">
document.querySelector('#unsupported').remove();
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/dcraw.js"></script>
<script type="module" async>
import loader from './src/loader.js';
loader();
</script>
<script src="/analytics.js" async></script>
</body>
</html>