ant-design/site/templates/layout.html

103 lines
4.6 KiB
HTML
Raw Normal View History

2015-05-07 18:50:36 +08:00
<!DOCTYPE html>
<html>
2015-07-20 14:29:11 +08:00
<head>
2015-07-14 20:16:05 +08:00
<meta charset="utf-8">
2015-10-21 14:53:48 +08:00
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2015-07-14 20:16:05 +08:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
2015-07-20 14:01:20 +08:00
<meta name="description" content="{{ config.site.description }}"/>
2015-07-14 20:16:05 +08:00
<title>{% block title %}{{ config.site.name }} - {{ config.site.description }}{% endblock %}</title>
<link rel="icon" href="https://t.alipayobjects.com/images/T1QUBfXo4fXXXXXXXX.png" type="image/x-icon">
<link rel="shortcut icon" href="https://t.alipayobjects.com/images/T1QUBfXo4fXXXXXXXX.png" type="image/x-icon">
{% block styles %}{% endblock %}
2015-10-20 16:47:55 +08:00
<link rel="stylesheet" href="{{static_url('../dist/demo.css')}}">
2015-09-17 17:29:03 +08:00
<link rel="stylesheet" href="{{static_url('style.css')}}">
<link rel="stylesheet" href="{{static_url('tomorrow.css')}}">
<!--[if IE 8]>
<script src="https://t.alipayobjects.com/images/rmsweb/T1q8JiXftaXXXXXXXX.js"></script>
<![endif]-->
2015-12-16 20:14:36 +08:00
<script src="https://as.alipayobjects.com/g/component/??console-polyfill/0.2.2/index.js,es5-shim/4.1.14/es5-shim.min.js,es5-shim/4.1.14/es5-sham.min.js,html5shiv/3.7.2/html5shiv.min.js,media-match/2.0.2/media.match.min.js"></script>
2015-11-02 16:21:49 +08:00
<script src="https://a.alipayobjects.com/??bluebird/2.9.30/bluebird.js,jquery/jquery/1.11.1/jquery.js"></script>
2015-07-14 20:16:05 +08:00
<script>
2015-09-17 18:05:06 +08:00
(function() {
window.ANT_COMPONENTS = [];
window.InstantClickChangeFns = [];
2015-07-21 13:50:37 +08:00
{%- for item in resource.pages|find_category(["CSS","Components"]) %}
ANT_COMPONENTS.push({
title: '{{item.title}}',
desc: '{{item.meta.chinese}}'
});
2015-07-20 14:29:11 +08:00
{%- endfor %}
2015-09-17 18:05:06 +08:00
var i = location.pathname.split('/').lastIndexOf('ant-design');
if (i > 0) {
window.rootUrl = location.origin + location.pathname.split('/').slice(0, 2+1).join('/');
} else {
window.rootUrl = location.origin;
}
})();
2015-07-14 20:16:05 +08:00
</script>
2015-09-17 17:29:03 +08:00
<script src="{{static_url('script.js')}}"></script>
2015-07-14 20:16:05 +08:00
<script>
2015-07-20 14:29:11 +08:00
window.antdVersion = {
2015-12-29 16:14:59 +08:00
latest: '{{config.package.version}}'
2015-07-20 14:29:11 +08:00
};
2015-07-14 20:16:05 +08:00
</script>
2015-09-17 17:29:03 +08:00
<script src="{{static_url('../dist/demo.js')}}"></script>
2015-11-04 16:55:02 +08:00
<script src="https://t.alipayobjects.com/images/T1DrxhXe0mXXXXXXXX.js"></script>
2015-07-14 20:16:05 +08:00
{% block scripts %}{% endblock %}
2015-07-20 14:29:11 +08:00
</head>
<body {% block bodyAttribute %}{% endblock %}>
<header id="header" class="clearfix">
2015-09-17 20:05:13 +08:00
<a class="logo" href="{{static_url('../')}}">
2015-07-20 19:32:42 +08:00
<img width="60" src="https://t.alipayobjects.com/images/rmsweb/T1B9hfXcdvXXXXXXXX.svg">
{{ config.site.name }}
2015-07-20 14:29:11 +08:00
</a>
2015-07-20 19:32:42 +08:00
<div class="search">
<div id="autoComplete"></div>
2015-07-20 14:29:11 +08:00
</div>
2015-12-28 14:26:11 +08:00
<div class="global-hint">
0.11 已发布0.10 文档请访问 <a href="http://010x.ant.design/">010x.ant.design</a>
</div>
2015-07-20 14:29:11 +08:00
<nav class="nav">
2015-07-14 20:16:05 +08:00
<span class="bar"></span>
<ul>
2015-07-20 14:29:11 +08:00
<li class="{%- if post.meta.filepath === 'README.md' %}current{%- endif %}">
2016-01-12 15:51:44 +08:00
<a href="{{static_url('../')}}">首页</a>
2015-07-20 14:29:11 +08:00
</li>
2016-01-06 17:28:49 +08:00
<li class="{%- if post.directory|rootDirectoryIn(['docs/practice']) %}current{%- endif %}">
2016-01-06 18:49:43 +08:00
<a href="{{static_url('../docs/practice/cases')}}">实践</a>
2016-01-04 20:31:37 +08:00
</li>
2016-01-06 17:28:49 +08:00
<li class="{%- if post.directory|rootDirectoryIn(['docs/pattern']) %}current{%- endif %}">
2016-01-06 18:49:43 +08:00
<a href="{{static_url('../docs/pattern/navigation')}}">模式</a>
2016-01-04 20:31:37 +08:00
</li>
2016-01-06 17:28:49 +08:00
<li class="{%- if post.directory|rootDirectoryIn(['docs/react','components']) or post.meta.filepath === 'CHANGELOG.md' %}current{%- endif %}">
<a href="{{static_url('../docs/react/introduce')}}">组件</a>
</li>
2016-01-12 15:51:44 +08:00
<li class="{%- if post.directory|rootDirectoryIn(['docs/spec']) %}current{%- endif %}">
<a href="{{static_url('../docs/spec/introduce')}}">语言</a>
</li>
2016-01-06 17:28:49 +08:00
<li class="{%- if post.directory|rootDirectoryIn(['docs/resource']) %}current{%- endif %}">
2016-01-06 18:49:43 +08:00
<a href="{{static_url('../docs/resource/download')}}">资源</a>
2015-08-24 15:57:00 +08:00
</li>
2015-07-14 20:16:05 +08:00
</ul>
2015-07-20 14:29:11 +08:00
</nav>
2015-08-26 22:16:20 +08:00
<div class="nav-phone-icon"></div>
2015-07-20 14:29:11 +08:00
</header>
<div class="main-wrapper">
{% block aside %}{% endblock %} {% block content %}{% endblock %}
</div>
{%- include "footer.html" %}
2015-09-11 14:57:32 +08:00
<script src="https://t.alipayobjects.com/images/rmsweb/T1AmXhXg0kXXXXXXXX.js" data-no-instant></script>
<script data-no-instant>
InstantClick.on('change', function() {
InstantClickChangeFns.forEach(function(fn) {
fn();
});
});
InstantClick.init();
</script>
2015-07-20 14:29:11 +08:00
</body>
2015-05-07 18:50:36 +08:00
</html>