-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAARIH.html
More file actions
26 lines (26 loc) · 790 Bytes
/
AARIH.html
File metadata and controls
26 lines (26 loc) · 790 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/tei-html.css">
<link rel="stylesheet" href="js/jquery-ui-1.11.4.custom/jquery-ui.css">
<script type="text/javascript" src="js/CETEI.js"></script>
<script type="text/javascript" src="js/jquery/jquery-1.11.3.js"></script>
<script type="text/javascript" src="js/appcrit.js"></script>
<script type="text/javascript">
var c = new CETEI();
c.shadowCSS = "css/tei-html.css";
var app = new appcrit(c);
var data = c.getHTML5('AARIH.xml', null);
data.then(function(TEI){
app.loadData(TEI);
$("#loading").remove();
$("body").append(TEI);
})
</script>
</head>
<body>
<div id="loading">
<p>✻</p>
</div>
</body>
</html>