-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (30 loc) · 1.12 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FCS Aggregator – Content Search</title>
<link rel="icon" type="image/png" sizes="40x40" href="/src/assets/images/icon-services-fcs.png">
</head>
<body>
<noscript>
<p>The FCS Aggregator requires JavaScript to be enabled!</p>
</noscript>
<div id="root"></div>
<!-- global configuration -->
<script>
/* move configuration before main 'fcs-sru-aggregator-ui-0.0.0.js' import! */
window.MyAggregator = window.MyAggregator || {};
window._paq = window._paq || [];
// window.MyAggregator.API_URL = "rest/";
// window.MyAggregator.DEPLOY_PATH = null; // null for default ("/")
// window.MyAggregator.VALIDATOR_URL = "https://www.clarin.eu/fcsvalidator/";
// window.MyAggregator.SHOW_SEARCH_RESULT_LINK = false;
// window.MyAggregator.mode
// window.MyAggregator.resources
// window.MyAggregator.xAggregationContext
window.MyAggregator.isLoggedIn = false;
</script>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>