-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.26 KB
/
Copy pathindex.html
File metadata and controls
43 lines (43 loc) · 1.26 KB
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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Explain Analyzer</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/purecss@3.0.0/build/pure-min.css"
/>
</head>
<body>
<div class="container">
<div class="header">
<h1>Explain Analyzer</h1>
<p class="subtitle">MySQL & PostgreSQL JSON EXPLAIN</p>
</div>
<div id="app"></div>
<div class="footer">
<p>
Maintained by
<a href="https://twitter.com/PreetamJinka">@PreetamJinka</a>.
</p>
<div>
<a
class="github-button"
href="https://github.com/Preetam/explain-analyzer"
aria-label="Star Preetam/explain-analyzer on GitHub"
>Star</a
>
<a
class="github-button"
href="https://github.com/Preetam/explain-analyzer/issues"
aria-label="Issue Preetam/explain-analyzer on GitHub"
>Issue</a
>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>