mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-22 07:53:34 +01:00
22 lines
589 B
HTML
22 lines
589 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'; style-src 'self' 'unsafe-inline'">
|
|
<title>grafnode!</title>
|
|
<style>
|
|
html { font-family: sans-serif; background: #2B2E3B; color: #9FEAF9; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Hello Electron!</h1>
|
|
<p>Build cross-platform desktop apps with JavaScript, HTML, and CSS</p>
|
|
|
|
<script>
|
|
require('./renderer.js')
|
|
</script>
|
|
</body>
|
|
</html>
|