um-react-electron/src/index.html
梦丶随心飞 be0b8687f3 update
2023-08-30 06:25:50 +08:00

56 lines
1.8 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Electron</title>
<!-- 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'"
/>
<link href="./style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div class="container">
<ul class="versions">
<li class="electron-version"></li>
<li class="chrome-version"></li>
<li class="node-version"></li>
<li class="v8-version"></li>
</ul>
<img class="hero-logo" src="./icons.svg" />
<h2 class="hero-text">You've successfully created an Electron project</h2>
<p class="hero-tagline">Please try pressing <code>F12</code> to open the devTool</p>
<p class="hero-tagline">This is the simplest starter for Electron without any build tools</p>
<p class="hero-tagline">
You can check out the links to learn more about Electron build tools
</p>
<div class="links">
<div class="link-item">
<a target="_blank" href="https://electron-vite.org">electron-vite</a>
</div>
<div class="link-item link-dot"></div>
<div class="link-item">
<a
target="_blank"
href="https://github.com/alex8088/quick-start/tree/master/packages/create-electron"
>
create-electron
</a>
</div>
</div>
<p class="hero-tagline">More templates:</p>
<p class="hero-tagline line-spacing">
<code>vanilla</code>, <code>vanilla-ts</code>, <code>vue</code>, <code>vue-ts</code>,
<code>react</code>, <code>react-ts</code>, <code>svelte</code>, <code>svelte-ts</code>
</p>
</div>
<script src="./renderer.js"></script>
</body>
</html>