-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (53 loc) · 2.69 KB
/
Copy pathindex.html
File metadata and controls
60 lines (53 loc) · 2.69 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MO_TWANG - Game Instructions</title>
<meta name="description" content="MO_TWANG is an LED strip arcade game by Metro Olografix. Learn how to play, controls, and strategy tips.">
<!-- Favicon -->
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<!-- Canonical URL -->
<link rel="canonical" href="https://motwang.olografix.org/">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:title" content="MO_TWANG - Game Instructions">
<meta property="og:description" content="MO_TWANG is an LED strip arcade game by Metro Olografix. Learn how to play, controls, and strategy tips.">
<meta property="og:url" content="https://motwang.olografix.org/">
<meta property="og:image" content="https://motwang.olografix.org/images/og-image.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:type" content="image/png">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="MO_TWANG - Game Instructions">
<meta name="twitter:description" content="MO_TWANG is an LED strip arcade game by Metro Olografix. Learn how to play, controls, and strategy tips.">
<meta name="twitter:image" content="https://motwang.olografix.org/images/og-image.png">
<meta name="twitter:site" content="@MetroOlografix">
<script>
// Detect user's browser language and redirect accordingly
(function() {
var userLang = navigator.language || navigator.userLanguage;
var lang = userLang.toLowerCase().split('-')[0]; // Get primary language code
// Map language to available pages
var availableLanguages = {
'it': 'it.html',
'en': 'en.html',
'es': 'es.html'
};
// Redirect to user's language if available, otherwise default to English
var targetPage = availableLanguages[lang] || 'en.html';
window.location.replace(targetPage);
})();
</script>
<noscript>
<meta http-equiv="refresh" content="0; url=en.html">
</noscript>
</head>
<body>
<p>Redirecting to your language... <a href="en.html">English</a> | <a href="it.html">Italian</a> | <a href="es.html">Spanish</a></p>
</body>
</html>