Deployed 2a5fdd8 with MkDocs version: 0.15.3

This commit is contained in:
Vinta
2016-03-13 22:21:31 +08:00
parent 0d6f3d9b08
commit d45c12312f
18 changed files with 584 additions and 204 deletions

10
toc.html Normal file
View File

@@ -0,0 +1,10 @@
<div class="bs-sidebar hidden-print affix well" role="complementary">
<ul class="nav bs-sidenav">
{% for toc_item in toc %}
<li class="main {% if toc_item.active %}active{% endif %}"><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
{% for toc_item in toc_item.children %}
<li><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
{% endfor %}
{% endfor %}
</ul>
</div>