index.html 621 B

12345678910111213141516171819202122
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="description" content="VNote - A pleasant note-taking platform." >
  6. <script type="text/javascript">
  7. var redir = (function() {
  8. var languageString = navigator.language || navigator.userLanguage || '';
  9. var language = languageString.split(/[_-]/)[0].toLowerCase();
  10. switch (language) {
  11. case 'zh':
  12. return "zh_cn/";
  13. default:
  14. return "en_us/";
  15. }
  16. })();
  17. window.location.href = redir;
  18. </script>
  19. </head>
  20. <body>
  21. </body>
  22. </html>