21 lines
719 B
HTML
21 lines
719 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>EmbyX - Loading...</title>
|
|
<script>
|
|
(function() {
|
|
var lang = navigator.language || navigator.userLanguage;
|
|
if (lang.toLowerCase().indexOf('zh') !== -1) {
|
|
window.location.href = './zh/';
|
|
} else {
|
|
window.location.href = './en/';
|
|
}
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body style="background-color: #000; color: #fff; display: flex; align-items: center; justify-content: center; height: 100vh; font-family: sans-serif;">
|
|
<p>Redirecting / 正在跳转...</p>
|
|
</body>
|
|
</html> |