-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (38 loc) · 1.42 KB
/
index.html
File metadata and controls
40 lines (38 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8" />
<title>LibgenDesktop</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<p></p>
<span data-i18n="homeLabel">A választható opciók:</span>
<button onclick="showPage('homeSite')" data-i18n="menu_opt_home">Kezdőlap</button>
<button onclick="showPage('searchSite')" data-i18n="menu_opt_search">Könyvkereső</button>
<button onclick="showPage('downloadedBooksListSite')" data-i18n="menu_opt_downloads">Letöltött könyvek</button>
<button onclick="showPage('settingsSite')" data-i18n="menu_opt_settings">Beállítások</button>
<p></p>
<span data-i18n="languageLabel">Nyelv:</span>
<button id="langBtn">EN</button>
</nav>
<main id="mainContent">
<div style="
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 80vh;
font-family: 'Georgia', 'Times New Roman', cursive;
text-align: center;
">
<h1 style="font-size: 4em; font-weight: normal; margin: 0;">LibgenDesktop</h1>
<p style="font-size: 1.5em; margin-top: 0.5em; color: #666;">Version 1.0<br>Last update: 29/07/2025</p>
</div>
</main>
<script src="https://unpkg.com/i18next@21.8.15/i18next.min.js"></script>
<script src="https://unpkg.com/i18next-http-backend@1.4.2/i18nextHttpBackend.min.js"></script>
<script src="renderer.js"></script>
</body>
</html>