Files
DOPSite/index.html
kandrusyak c186a39f46 add english
2022-05-16 23:13:36 +03:00

21 lines
559 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="tools/normalize.css">
<link rel="stylesheet" href="style.css">
<title>DOP</title>
</head>
<body class="flex-col">
<script type="text/javascript">
var language = window.navigator ? (window.navigator.language ||
window.navigator.systemLanguage ||
window.navigator.userLanguage) : 'ru';
language = language.substr(0, 2).toLowerCase();
if (language !== 'ru')
window.location = '/en';
else
window.location = '/ru';
</script>
</body>
</html>