forked from openfin/platform-api-project-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatform-window.html
More file actions
25 lines (25 loc) · 984 Bytes
/
Copy pathplatform-window.html
File metadata and controls
25 lines (25 loc) · 984 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>OpenFin Template</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/frame-styles.css"></link>
<link rel="stylesheet" href="styles/left-menu.css"></link>
<link rel="stylesheet" href="styles/view-container-styles.css"></link>
<script type="module" src="js/left-menu.js"></script>
<script type="module" src="js/title-bar.js"></script>
<script type="module" src="js/host-view-container.js"></script>
</head>
<body>
<div id="of-frame-main">
<title-bar></title-bar>
<div id="body-container">
<left-menu></left-menu>
<div id="layout-container"></div>
</div>
</div>
</body>
</html>