| layout | home |
|---|---|
| title | 目次 |
| description | チュートリアルの目次 |
| permalink | /toc/ |
{% for chapter in site.data.chapters %}
{% assign secs = site.sections | where: "chap", chapter.id | sort: "sec" %}
{% for doc in secs %}
- [{{doc.sec}} {{ doc.title | escape }}]({{ doc.url | relative_url }}) {% endfor %}
{% endfor %}