-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
43 lines (37 loc) · 1.63 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>SrcBrowse - Source Map Browser</title>
<meta name="description" content="Select a source map file to browse the files contained inside">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/sanitize.css/sanitize.css" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/themes/prism-okaidia.css" />
<link rel="stylesheet" href="./App.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-25623237-14"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-25623237-14');
</script>
<body>
<noscript>This page requires JavaScript!</noscript>
<div class="wrapper">
<h1 class="mainTitle">SrcBrowse - Source Map Browser</h1>
<div id="app">
Loading...
</div>
<footer class="main-footer">
By <a href="https://d.sb/">Daniel15</a>. <a href="https://github.com/Daniel15/SrcBrowse">Get the source code</a>
</footer>
</div>
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script crossorigin src="https://unpkg.com/[email protected]/dist/source-map.js"></script>
<script crossorigin src="https://unpkg.com/[email protected]/prism.js"></script>
<script src="./js/index.js"></script>
</body>
</html>