thedesk/app/index.html
2022-11-21 13:20:38 +09:00

13 lines
263 B
HTML

<!doctype html>
<html>
<head>
<script>
if (/^ja\b/.test(navigator.language)) {
location.href = './view/ja'
} else {
location.href = './view/en'
}
</script>
</head>
</html>