-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (44 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<title>nlp highlight</title>
</head>
<body>
<script src="dist/bundle.js"></script>
<link rel="stylesheet" type="text/css" href="dist/styles.css">
<div class="uk-container uk-container-center uk-margin-top uk-margin-large-bottom">
<div class="uk-grid" data-uk-grid-margin>
<div class="uk-width-medium-1 uk-width-large-2-10">
<p>
<h3>Use buttons to toggle semantic highlighting:</h3>
<br>
</p>
<button class="uk-button-large round-button" id="button-person" type="button">People</button>
<button class="uk-button-large round-button" id="button-agent" type="button">Organisations</button>
<button class="uk-button-large round-button" id="button-place" type="button">Places</button>
<button class="uk-button-large round-button" id="button-quote" type="button">Quotes</button>
<button class="uk-button-large round-button" id="button-number" type="button">Numbers</button>
</div>
<div class="uk-width-medium-1-2 uk-width-large-4-10">
<h1 class="uk-article-title" id="title-left">Jeremy Clarkson joins Guardian drive for fossil fuel divestment</h1>
<div id="textbody-left">
<div id="target">Loading..</div>
<script id="template" type="x-tmpl-mustache">
{{ textbody }}
</script>
</div>
</div>
<div class="uk-width-medium-1-2 uk-width-large-4-10">
<h1 class="uk-article-title" id="title-right">Jeremy Clarkson joins Guardian drive for fossil fuel divestment</h1>
<div id="textbody-right">
<br>
<div id="target2">Loading..</div>
<script id="template" type="x-tmpl-mustache">
{{ textbody }}
</script>
</div>
</div>
</div>
</div>
</body>
</html>