ant-design/site/theme/static/template.html

121 lines
4.3 KiB
HTML
Raw Normal View History

2016-02-29 14:08:40 +08:00
<!DOCTYPE html>
<html>
2016-12-09 14:14:31 +08:00
<head>
2019-05-07 14:57:32 +08:00
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
2019-05-08 16:27:37 +08:00
content="An enterprise-class UI design language and React implementation with a set of high-quality React components, one of best React UI library for enterprises"
2019-05-07 14:57:32 +08:00
/>
<title>Ant Design - A UI Design Language</title>
2019-05-07 14:57:32 +08:00
<link
rel="icon"
href="https://gw.alipayobjects.com/zos/rmsportal/rlpTLlbMzTNYuZGGCVYM.png"
type="image/x-icon"
/>
{% for cssFile in manifest["css"] %}
<link rel="stylesheet" type="text/css" href="{{ root }}{{ cssFile }}" />
2019-04-09 20:19:45 +08:00
{% endfor %}
2018-08-17 22:29:36 +08:00
<style id="nprogress-style">
2019-05-07 14:57:32 +08:00
#nprogress {
display: none;
}
2018-08-17 22:29:36 +08:00
</style>
2019-05-07 14:57:32 +08:00
<link rel="stylesheet/less" type="text/css" href="{{ root }}color.less" />
2019-06-21 17:04:07 +08:00
<script src="https://polyfill.alicdn.com/polyfill.min.js?features=default,es2015,matchMedia"></script>
<script>
2019-05-07 14:57:32 +08:00
(function() {
function isLocalStorageNameSupported() {
var testKey = 'test';
var storage = window.localStorage;
try {
storage.setItem(testKey, '1');
storage.removeItem(testKey);
return true;
} catch (error) {
return false;
}
2017-02-21 13:36:17 +08:00
}
2019-05-07 14:57:32 +08:00
// 优先级提高到所有静态资源的前面,语言不对,加载其他静态资源没意义
var pathname = location.pathname;
2019-05-07 14:57:32 +08:00
function isZhCN(pathname) {
return /-cn\/?$/.test(pathname);
}
function getLocalizedPathname(path, zhCN) {
var pathname = path.startsWith('/') ? path : '/' + path;
if (!zhCN) {
// to enUS
return /\/?index-cn/.test(pathname) ? '/' : pathname.replace('-cn', '');
} else if (pathname === '/') {
return '/index-cn';
} else if (pathname.endsWith('/')) {
return pathname.replace(/\/$/, '-cn/');
}
return pathname + '-cn';
}
2019-05-07 14:57:32 +08:00
// 兼容旧的 URL `?locale=...`
var queryString = location.search;
if (queryString) {
var isZhCNConfig = queryString.indexOf('zh-CN') > -1;
if (isZhCNConfig && !isZhCN(pathname)) {
location.pathname = getLocalizedPathname(pathname, isZhCNConfig);
}
}
2019-05-07 14:57:32 +08:00
// 首页无视链接里面的语言设置 https://github.com/ant-design/ant-design/issues/4552
if (isLocalStorageNameSupported() && (pathname === '/' || pathname === '/index-cn')) {
var lang =
(window.localStorage && localStorage.getItem('locale')) ||
((navigator.language || navigator.browserLanguage).toLowerCase() === 'zh-cn'
? 'zh-CN'
: 'en-US');
// safari is 'zh-cn', while other browser is 'zh-CN';
if ((lang === 'zh-CN') !== isZhCN(pathname)) {
location.pathname = getLocalizedPathname(pathname, lang === 'zh-CN');
}
}
2019-05-07 14:57:32 +08:00
document.documentElement.className += isZhCN(pathname) ? 'zh-cn' : 'en-us';
})();
</script>
</head>
<body>
<div id="react-content">
{{ content | safe }}
</div>
2019-04-09 20:19:45 +08:00
{% for jsFile in manifest["js"] %}<script src="{{ root }}{{ jsFile }}"></script>
{% endfor %}
<!-- Global Site Tag (gtag.js) - Google Analytics -->
2018-05-21 23:27:26 +08:00
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-72788897-1"></script>
2016-12-09 14:14:31 +08:00
<script>
2019-05-07 14:57:32 +08:00
if (!location.port) {
// Enable Google Analytics
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-72788897-1');
}
2017-01-07 23:30:33 +08:00
</script>
2017-04-12 21:17:04 +08:00
<!-- Hotjar Tracking Code for ant.design -->
<script>
2019-05-07 14:57:32 +08:00
(function(h, o, t, j, a, r) {
h.hj =
h.hj ||
function() {
(h.hj.q = h.hj.q || []).push(arguments);
};
h._hjSettings = { hjid: 473408, hjsv: 5 };
a = o.getElementsByTagName('head')[0];
r = o.createElement('script');
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, '//static.hotjar.com/c/hotjar-', '.js?sv=');
2017-04-12 21:17:04 +08:00
</script>
2016-12-09 14:14:31 +08:00
</body>
2016-02-29 14:08:40 +08:00
</html>