mirror of
https://github.com/sipeed/sipeed_wiki.git
synced 2026-09-11 00:22:49 -05:00
26 lines
722 B
HTML
26 lines
722 B
HTML
<script>
|
|
var hash = window.location.hash
|
|
if (hash.indexOf("start")!= -1)
|
|
{
|
|
if( navigator.language.indexOf("zh") == 0 )
|
|
{
|
|
location.href = "https://wiki.sipeed.com/hardware/zh/tang/tang-primer-15k/start.html"
|
|
}
|
|
else
|
|
{
|
|
location.href = "https://wiki.sipeed.com/hardware/en/tang/tang-primer-15k/start.html"
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if( navigator.language.indexOf("zh") == 0 )
|
|
{
|
|
location.href = "https://wiki.sipeed.com/hardware/zh/tang/tang-primer-15k/primer-15k.html"
|
|
}
|
|
else
|
|
{
|
|
location.href = "https://wiki.sipeed.com/hardware/en/tang/tang-primer-15k/primer-15k.html"
|
|
}
|
|
}
|
|
</script>
|