-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
45 lines (44 loc) · 1.91 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
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="/dist/assets/favicon.ico" type="image/x-icon">
<link rel="icon" href="/dist/assets/favicon.ico" type="image/x-icon">
<meta content="Validate and Verify your TOML files (Tom's obvious minimal language)" name="description">
<meta charset="utf-8">
<script data-goatcounter="https://toml-lint.goatcounter.com/count"
async src="//gc.zgo.at/count.js"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-114308474-1');
</script>
<title>TOML Lint - The TOML Validator</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<style>
.footer {
text-align: center;
margin: 6em;
}
</style>
</head>
<body>
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand" href="#">
<img src="/dist/assets/toml-200.png" width="30" height="30" class="d-inline-block align-top" alt="">
TOML Lint (v1.0)
</a>
<a class="navbar-brand" href="https://github.com/toml-lang/toml">
<img src="/dist/assets/GitHub-32.png" width="30" height="30" class="d-inline-block align-top" alt="">
</a>
</nav>
<div id="app"></div>
<script src="/dist/build.js"></script>
<footer class="footer">
<h3>Need a self-hosted rubygems server? Check out <a href="https://gemfast.io">gemfast.io</a></h3>
<br>
<p>Toml parser <a href="https://github.com/iarna/iarna-toml">@iarna/toml</a></p>
<p>©<script>document.write(new Date().getFullYear());</script> Greg Schofield - <a href="https://github.com/gscho/toml-lint">GitHub</a></p>
</footer>
</body>
</html>