-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 912 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 912 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<link crossorigin="anonymous" href="https://golden-layout.com/assets/css/goldenlayout-base.css" rel="stylesheet" />
<link crossorigin="anonymous" href="https://golden-layout.com/assets/css/goldenlayout-dark-theme.css" rel="stylesheet" />
<style>
/*.lm_item_container {display:block;}*/
</style>
</head>
<body>
<!-- <h1>Hello World!</h1> -->
<!-- All of the Node.js APIs are available in this renderer process. -->
<!-- We are using Node.js <script>document.write(process.versions.node)</script>,
Chromium <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>. -->
</body>
<script>
// You can also require other files to run in this process
require('./renderer.js');
</script>
</html>