5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-07 06:19:57 +08:00
wails/v3/internal/templates/_base/vanilla/frontend/index.html
2023-12-29 12:50:25 +11:00

26 lines
807 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/wails.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wails App</title>
</head>
<body>
<a wml-openurl="https://wails.io">
<img src="/wails.png" class="logo" alt="Wails logo"/>
</a>
<a wml-openurl="https://developer.mozilla.org/en-US/docs/Web/JavaScript">
<img src="/javascript.svg" class="logo vanilla" alt="JavaScript logo"/>
</a>
<h1>Hello Wails!</h1>
<div class="card">
<button id="test" onclick="doGreet()">Press me!</button>
</div>
<p class="read-the-docs">
Click on the Wails logo to learn more
</p>
<script type="module" src="/main.js"></script>
</body>
</html>