2017-09-12 16:13:26 +09:00
|
|
|
{% extends "index.html" %}
|
|
|
|
|
2017-10-19 13:48:50 +02:00
|
|
|
{% block extra_nav_class %}{% endblock extra_nav_class %}
|
2017-09-12 16:13:26 +09:00
|
|
|
{% block extra_content_class %}content--reversed{% endblock extra_content_class %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% set section = get_section(path="documentation/_index.md") %}
|
2017-10-04 00:21:18 +09:00
|
|
|
<div class="documentation">
|
2017-09-12 16:13:26 +09:00
|
|
|
<aside class="documentation__sidebar">
|
2017-09-27 23:37:17 +09:00
|
|
|
<ul>
|
2018-10-15 22:28:25 +02:00
|
|
|
{% for p in section.subsections %}
|
|
|
|
{% set subsection = get_section(path=p) %}
|
2017-09-12 16:13:26 +09:00
|
|
|
<li>
|
2017-10-04 00:21:18 +09:00
|
|
|
<span class="documentation__sidebar__title">{{ subsection.title }}</span>
|
2017-09-12 16:13:26 +09:00
|
|
|
<ul>
|
2017-09-27 23:37:17 +09:00
|
|
|
{% for page in subsection.pages %}
|
|
|
|
<li class="{% if current_path == page.path %}active{% endif %}">
|
|
|
|
<a href="{{page.permalink}}">{{page.title}}</a>
|
|
|
|
</li>
|
2017-09-12 16:13:26 +09:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
2017-09-27 23:37:17 +09:00
|
|
|
</ul>
|
2017-09-12 16:13:26 +09:00
|
|
|
</aside>
|
|
|
|
<div class="documentation__content">
|
2017-09-27 23:37:17 +09:00
|
|
|
{% block doc_content %}
|
|
|
|
{% endblock doc_content %}
|
2017-09-12 16:13:26 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|