添加项目文件
This commit is contained in:
PhatenIoT-yan
2025-04-29 16:11:32 +08:00
parent 5412e97d37
commit 8d10d3da3f
978 changed files with 54843 additions and 0 deletions

22
zh/material/index.html Normal file
View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<script>
const lang = navigator.language;
var lang_l = localStorage.getItem("currLang");
var langzh = "zh-CN";
var test = location.href;
if (lang==langzh&&!lang_l){
location.href = test+"zh/"
}else{
location.href = test+"en/"
}
console.log("wwww:"+location.href);
</script>
<body>
</body>
</html>