2013-07-15 09:31:46 +08:00
|
|
|
<div class="nav-docs">
|
2013-09-25 13:13:26 +08:00
|
|
|
<!-- Docs Nav -->
|
2013-11-20 07:52:42 +08:00
|
|
|
{% for section in site.data.nav_docs %}
|
2013-07-17 08:24:41 +08:00
|
|
|
<div class="nav-docs-section">
|
|
|
|
|
<h3>{{ section.title }}</h3>
|
|
|
|
|
<ul>
|
|
|
|
|
{% for item in section.items %}
|
|
|
|
|
<li>
|
2014-09-25 07:49:27 +08:00
|
|
|
{{ item | sidebar_item_link}}
|
2013-07-17 08:24:41 +08:00
|
|
|
{% if item.subitems %}
|
|
|
|
|
<ul>
|
|
|
|
|
{% for subitem in item.subitems %}
|
|
|
|
|
<li>
|
2014-09-30 03:40:23 +08:00
|
|
|
{{ subitem | sidebar_item_link}}
|
2013-07-17 08:24:41 +08:00
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
2013-09-25 13:13:26 +08:00
|
|
|
|
2013-11-12 13:00:53 +08:00
|
|
|
<!-- Tips Nav -->
|
2013-11-20 07:52:42 +08:00
|
|
|
{% for section in site.data.nav_tips %}
|
2013-09-25 13:13:26 +08:00
|
|
|
<div class="nav-docs-section">
|
|
|
|
|
<h3>{{ section.title }}</h3>
|
|
|
|
|
<ul>
|
|
|
|
|
{% for item in section.items %}
|
|
|
|
|
<li>
|
2013-11-12 13:00:53 +08:00
|
|
|
<a href="/react/tips/{{ item.id }}.html"{% if page.id == item.id %} class="active"{% endif %}>{{ item.title }}</a>
|
2013-09-25 13:13:26 +08:00
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
2013-10-30 02:02:20 +08:00
|
|
|
</div>
|