-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.html
85 lines (73 loc) · 2.94 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Schema.org Content Checker (work-in-progress)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/noty/3.1.4/noty.css">
<link rel="stylesheet" href="static/css/libs/bootstrap.min.css">
<link rel="stylesheet" href="static/css/master.css">
<link rel="stylesheet" href="static/css/scc.css">
</head>
<body>
<div class="header">
<div class="title">Schema.org Content Checker (work-in-progress)</div>
<div class="d-flex">
<a href="shapes.html">
Shapes
</a>
<div class="lang-selector">
<label for="validation-lang-select">Validation language</label>
<select class="form-control" name="validation-lang-select" id="validation-lang-select">
<option value="shex">ShEx</option>
<option value="shacl">SHACL</option>
</select>
</div>
</div>
</div>
<div class="content">
<div id="validate-btn"><img src="static/images/icons/play_arrow.svg"
alt="validate"></div>
<div class="block input-block">
<div class="url-input">
<img src="static/images/icons/world.svg" alt="remote url">
<input type="text" id="url-input" class="form-control" placeholder="Enter remote url">
<div class="btn" id="url-submit-button">Load</div>
</div>
<div class="input-placeholder d-none loading-curtain">
<div class="lds-roller">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<textarea class="form-control input-placeholder" name="input-text" id="input-text" cols="30"
rows="10"></textarea>
<div class="tests-display">
<div class="tests d-none"></div>
<div id="show-tests-btn">Show tests</div>
</div>
</div>
<div class="block output-block">
<div class="hierarchy">
<div class="title">Hierarchy</div>
<div class="h-items"></div>
</div>
<div class="reports"></div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Noty - for pretty notifications -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/noty/3.1.4/noty.min.js"></script>
<script src="static/js/libs/schemarama.bundle.min.js"></script>
<script src="static/js/scc/pretty-markup.js"></script>
<script src="static/js/scc/shex.js"></script>
<script src="static/js/scc/shacl.js"></script>
<script src="static/js/scc/layout.js"></script>
<script src="static/js/scc/core.js"></script>
</body>
</html>