mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-18 22:51:32 +03:00
19 lines
686 B
HTML
19 lines
686 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
|
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
|
<title>Hello World!</title>
|
|
</head>
|
|
<body>
|
|
<h1>Hello World!</h1>
|
|
We are using Node.js <span id="node-version"></span>,
|
|
Chromium <span id="chrome-version"></span>,
|
|
and Electron <span id="electron-version"></span>.
|
|
|
|
<!-- You can also require other files to run in this process -->
|
|
<script src="./renderer.js"></script>
|
|
</body>
|
|
</html> |