Files
SOP/sop-website/sop-portal/index.html
tanghc 6ab696dfaf - 新增ISV用户平台
- 新增门户网站(portal)
- 新增`C++`,`Rust`语言SDK
2020-11-07 10:55:12 +08:00

19 lines
406 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<script src="//cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js"></script>
<script>
window.rootPath = '';
window.defaultLanguage = 'zh-cn';
var lang = Cookies.get('docsite_language');
if (!lang) {
lang = 'zh-cn';
}
window.location = window.rootPath + '/zh-cn';
</script>
</body>
</html>