mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 05:49:53 +08:00
23 lines
621 B
HTML
23 lines
621 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="description" content="VNote - A pleasant note-taking platform." >
|
|
<script type="text/javascript">
|
|
var redir = (function() {
|
|
var languageString = navigator.language || navigator.userLanguage || '';
|
|
var language = languageString.split(/[_-]/)[0].toLowerCase();
|
|
switch (language) {
|
|
case 'zh':
|
|
return "zh_cn/";
|
|
default:
|
|
return "en_us/";
|
|
}
|
|
})();
|
|
window.location.href = redir;
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|