mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-18 16:01:47 +03:00
c2b8623718
- added components system - made settings template settings - added `vue-i18n`, made template locales - made `Checkbox` component
43 lines
No EOL
1.4 KiB
HTML
43 lines
No EOL
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<link rel="stylesheet" lang="sass" href="/src/sass/index.sass" />
|
|
</head>
|
|
|
|
<body theme="light">
|
|
<div id="app">
|
|
<img class="background" :src="uri.background">
|
|
|
|
<div class="downloader-panel" theme="dark">
|
|
<div class="downloader-label">
|
|
<span id="downloaded"></span>
|
|
<span id="speed"></span>
|
|
<span id="eta"></span>
|
|
</div>
|
|
|
|
<div class="progress-bar">
|
|
<div class="progress"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="launcher-content">
|
|
<iframe :src="uri.social" scrolling="no" style="position: absolute; border: 0; top: 0; left: 0;" width="100%" height="100%"></iframe>
|
|
</div>
|
|
|
|
<div id="settings">
|
|
<img src="/src/assets/images/gear.png" class="unactive">
|
|
<img src="/src/assets/images/gear-active.png" class="active">
|
|
</div>
|
|
|
|
<button class="button" id="launch" i18id="Launch">Launch</button>
|
|
</div>
|
|
|
|
<script src="neutralino.js"></script>
|
|
|
|
<script type="module" src="/src/entry.js"></script>
|
|
<script type="module" lang="ts" src="/src/pages/index.ts"></script>
|
|
</body>
|
|
</html> |