ant-design/theme/templates/layout.html

89 lines
2.4 KiB
HTML
Raw Normal View History

2015-05-07 18:50:36 +08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<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">
<title>Ant Design</title>
2015-05-08 14:57:59 +08:00
<link rel="stylesheet" href="/static/style.css">
2015-05-09 18:24:25 +08:00
<link rel="stylesheet" href="/static/tomorrow.css">
2015-05-08 12:11:14 +08:00
<script src="https://a.alipayobjects.com/jquery/jquery/1.11.1/jquery.js"></script>
2015-05-08 14:57:59 +08:00
<script src="/static/script.js"></script>
2015-05-07 18:50:36 +08:00
</head>
<body>
<header id="header">
2015-05-08 20:45:08 +08:00
<a class="logo" href="/">
<img src="https://t.alipayobjects.com/images/T1.lRfXcxoXXXXXXXX.png">
2015-05-07 18:50:36 +08:00
</a>
<div class="search">
<form>
<input type="text" placeholder="search">
<button type="submit"></button>
</form>
</div>
<nav class="nav">
<span class="bar"></span>
<ul>
<li><a href="/">首页</a>
</li>
2015-05-08 20:45:08 +08:00
<li><a href="/docs/instruction">原则</a>
2015-05-07 18:50:36 +08:00
</li>
2015-05-09 17:36:15 +08:00
<li><a href="/components/button">组件</a>
2015-05-07 18:50:36 +08:00
</li>
2015-05-08 20:45:08 +08:00
<li><a href="/docs/modes">模式</a>
2015-05-07 18:50:36 +08:00
</li>
2015-05-08 20:45:08 +08:00
<li><a href="/docs/cases">案例</a>
2015-05-07 18:50:36 +08:00
</li>
2015-05-08 20:45:08 +08:00
<li><a href="/docs/download">下载</a>
2015-05-07 18:50:36 +08:00
</li>
</ul>
</nav>
<div class="nav-phone-icon"></div>
</header>
2015-05-09 17:36:15 +08:00
{%- if post.meta.template === 'component' %}
{%- include "aside.html" %}
{%- endif %}
2015-05-07 20:54:19 +08:00
{%- if post.filename === 'index' %}
<div class="main">
<div class="main-box" id="main">
<div class="banner-box">
<div id="bannerAnim"></div>
<div class="banner-img"></div>
<div class="banner-text"></div>
</div>
</div>
</div>
2015-05-09 15:39:06 +08:00
<script src="/static/home.js"></script>
2015-05-07 21:01:15 +08:00
{%- else %}
2015-05-09 18:16:36 +08:00
<section class="main-container">
<article class="markdown">
<h1>{{ post.title }}</h1>
{{ post.html }}
</article>
</section>
2015-05-07 20:54:19 +08:00
{%- endif %}
2015-05-07 18:50:36 +08:00
<footer id="footer">
<ul>
<li>
2015-05-09 18:16:36 +08:00
<h2>Gitlab仓库</h2>
2015-05-07 18:50:36 +08:00
<a href="">脚手架 - Flaming Water</a>
<a href="">组件 - Flaming Cloud Component</a>
</li>
<li>
<h2>关于我们</h2>
<a href="">博客 - Ant UED</a>
</li>
<li>
<h2>联系我们</h2>
2015-05-08 20:45:08 +08:00
<a href="">问题建议 - Issues</a>
2015-05-07 18:50:36 +08:00
</li>
<li>
2015-05-08 20:45:08 +08:00
<h3>© 2015 蚂蚁金服体验技术部出品</h3>
2015-05-07 18:50:36 +08:00
</li>
</ul>
</footer>
</body>
</html>