-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
40 lines (36 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="../../../favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>MyNewFrontendTool</title>
</head>
<body>
<!--LOAD IFC BUTTON-->
<input type="file" id="load-ifc-button"></input>
<!--QUERY BOX-->
<div id="query-box">
<textarea id="SPARQL-input" rows="12" cols="63">
PREFIX bot: <https://w3id.org/bot#>
SELECT * WHERE {
?s ?p bot:Building.
?s ?p ?o
}
LIMIT 100
</textarea>
<textarea id="GRAPH-input" rows="2" cols="63"></textarea>
<input type="button" class="SPARQL-submit" id="SPARQL-submit" value="Run query!" onclick="queryComunica()">
</div>
<!--RESULTS BOX-->
<div id="results-box">
<p>Selected guid: <a id="selected-guid"></a></p>
<p><span id="results-box-content"></span></p>
</div>
<!--IFC.JS VIEWER-->
<div id="viewer-container"></div>
<script src="bundle.js"></script>
</body>
</html>