You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
2.7 KiB

10 years ago
<!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">
10 years ago
<title>{% block title %}{{ config.site.name }} - {{ config.site.description }}{% endblock %}</title>
10 years ago
<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">
10 years ago
<link rel="stylesheet" href="/static/normalize.css">
{% block styles %}{% endblock %}
10 years ago
<link rel="stylesheet" href="/static/style.css">
10 years ago
<!--<link href="http://fonts.useso.com/css?family=Raleway:600,500,400,300" rel="stylesheet" type="text/css">-->
10 years ago
<link rel="stylesheet" href="/static/tomorrow.css">
10 years ago
<script src="https://a.alipayobjects.com/jquery/jquery/1.11.1/jquery.js"></script>
10 years ago
<!-- react -->
10 years ago
<script src="https://a.alipayobjects.com/react/0.13.2/react.js"></script>
<script src="/static/script.js"></script>
10 years ago
{% block scripts %}{% endblock %}
10 years ago
</head>
<body {% block bodyAttribute %}{% endblock %}>
10 years ago
<header id="header">
<a class="logo" href="/">
10 years ago
<img width="60" src="https://t.alipayobjects.com/images/rmsweb/T1B9hfXcdvXXXXXXXX.svg">
10 years ago
{{ config.site.name }}
10 years ago
</a>
<div class="search">
<form>
<input type="text" placeholder="search">
<button type="submit"></button>
</form>
</div>
<nav class="nav">
<span class="bar"></span>
10 years ago
<ul>
<li class="{%- if post.meta.filepath === 'README.md' %}current{%- endif %}">
<a href="/">首页</a>
10 years ago
</li>
10 years ago
<li class="{%- if post.meta.category === 'start' %}current{%- endif %}">
<a href="/docs/introduce">上手</a>
10 years ago
</li>
<li class="{%- if post.meta.template === 'component' %}current{%- endif %}">
10 years ago
<a href="/components">组件</a>
10 years ago
</li>
<li class="{%- if post.filename === 'design' %}current{%- endif %}">
<a class="disabled" href="/docs/design">设计</a>
</li>
<li class="{%- if post.filename === 'modes' %}current{%- endif %}">
<a class="disabled" href="/docs/modes">模式</a>
10 years ago
</li>
10 years ago
<li class="{%- if post.filename === 'cases' %}current{%- endif %}">
<a class="disabled" href="/docs/cases">案例</a>
10 years ago
</li>
</ul>
</nav>
</header>
10 years ago
<div class="main-wrapper">
10 years ago
{% block aside %}{% endblock %}
{% block content %}{% endblock %}
10 years ago
</div>
{%- include "footer.html" %}
10 years ago
</body>
</html>