-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 1.85 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
<!--
/********************************************************
* Author: Omar Hesham, 2015-2017.
* Bruno St-Aubin, 2017-2019.
* Advanced Real-Time Simulation Lab.
* Carleton University, Ottawa, Canada.
* License: GNU General Public License v3.0
*
* Project: Web-based DEVS Simulation Viewer
*/
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no" />
<meta name="description" content="This web application is a viewer for DEVS simulation log files">
<meta name="author" content="Bruno St-Aubin, Omar Hesham">
<title>DEVS Simulation Viewer | ARS Lab | Carleton University</title>
<link rel='shortcut icon' href='assets/favicon.ico'>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="../api-web-devs/api-web-devs.css">
<link rel="stylesheet" href="application.css">
<script src="../api-web-devs/references//zip/zip.js"></script>
<script src="../api-web-devs/references/StreamSaver/StreamSaver.js"></script>
<script src="../api-web-devs/references/StreamSaver/zip-stream.js"></script>
<script src="../api-web-devs/polyfill/promise.min.js"></script>
<script src='main.js' type='module'></script>
<!-- Hotjar Tracking Code for https://staubibr.github.io/web-devs-simple-viewer/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:1809986,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
</head>
<body></body>
</html>