27 lines
720 B
HTML
27 lines
720 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Libre Developers Documentation.</title>
|
||
|
<noscript>
|
||
|
<meta http-equiv="refresh" content="1; url=/en/" />
|
||
|
</noscript>
|
||
|
<script>
|
||
|
document.addEventListener('DOMContentLoaded', function() {
|
||
|
var language = navigator.language || navigator.userLanguage;
|
||
|
var path = '/en/';
|
||
|
|
||
|
switch (language.substr(0, 2)) {
|
||
|
case 'en':
|
||
|
path = '/en/';
|
||
|
break;
|
||
|
}
|
||
|
window.location.href = path;
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>
|