-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
70 lines (59 loc) · 3.39 KB
/
index.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<meta name="author" content="Tiemen" />
<meta name="color-scheme" content="dark light" />
<meta name="theme-color" content="#FFE81F" />
<meta name="keywords" content="star wars, aurebesh, translator, aurebesh translator, translate aurebesh, aurebesh language, star wars language, star wars translator" />
<meta name="title" content="Aurebesh Translator" />
<meta name="description" content="Aurebesh Translator with a custom keyboard for easy Aurebesh-English translation and mobile compatibility." />
<meta property="og:title" content="Aurebesh Translator" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Aurebesh Translator with a custom keyboard for easy Aurebesh-English translation and mobile compatibility." />
<meta property="twitter:card" content="summary" />
<meta property="twitter:site" content="@ThaTiemsz" />
<meta property="twitter:title" content="Aurebesh Translator" />
<meta property="twitter:description" content="Aurebesh Translator with a custom keyboard for easy Aurebesh-English translation and mobile compatibility." />
<title>Aurebesh Translator</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/simple-keyboard@latest/build/css/index.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<div class="container">
<h1>Aurebesh Translator</h1>
<p>Translate text into Aurebesh by typing in either text areas or by clicking the <i class="fas fa-keyboard"></i> icon below and using the custom keyboard, which is helpful for translating Aurebesh into English.</p>
<div class="simple-keyboard" style="display: none;"></div>
<div class="translateArea">
<div class="translateEnglish">
<h2>
English
<i class="fas fa-keyboard"></i>
</h2>
<textarea name="english" id="english" placeholder="Type your text here..."></textarea>
</div>
<div class="translateAurebesh">
<h2>Aurebesh</h2>
<textarea name="aurebesh" id="aurebesh" placeholder="Type your Aurebesh here..."></textarea>
</div>
</div>
<button class="copyLink">
Copy Link <i class="fas fa-link"></i>
</button>
<img src="./assets/img/Aurebesh-GMSR-dark.png" alt="Aurebesh" id="aurebesh-reference" />
<div class="socials">
<a href="https://twitter.com/ThaTiemsz" target="_blank" title="Twitter">
<i class="fab fa-twitter"></i>
</a>
<a href="https://github.com/ThaTiemsz" target="_blank" title="GitHub">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/simple-keyboard@latest/build/index.js"></script>
<script type="text/javascript" src="https://rawcdn.githack.com/ThaTiemsz/Aurebesh-Translator/1b71a8d53642d151c2d7ad9e7a1f9de206ec0871/assets/js/main.js"></script>
<!-- <script type="text/javascript" src="./assets/js/main.js"></script> -->
</body>
</html>