vnote/index.html
2021-05-13 07:34:27 +08:00

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>