Files
NANOKVM-sipeed_wiki-MIRROR/pages/index/zh/m4cdock.html
taorye 187e9165cf Add quick start guide and update sidebar for M4C SoM and M4 Chat
- Created a new quick start guide for M4 Chat in Chinese documentation.
- Updated sidebar links to reflect changes in file structure for M4C SoM and M4 Chat.
- Modified layout links to point to the correct M4C Dock page.
- Added new HTML pages for M4C Dock and M4 Chat with language detection and redirection script.
2025-08-19 18:47:01 +08:00

17 lines
499 B
HTML

<script>
var hash = window.location.hash
var url_language = "zh"
if( navigator.language.indexOf("zh") == -1 )
{
url_language = "en"
}
switch (window.location.hash) {
case "#c8" :
location.href = window.location.origin + "/hardware/" + url_language + "/maixIV/m4cdock/intro.html"
break;
default :
location.href = window.location.origin + "/hardware/" + url_language + "/maixIV/m4cdock/intro.html"
}
</script>