Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
{% assign part_n = 0 %}
{% for part in site.data.toc.toc %}
{% if (menu_for_part == nil) or (menu_for_part == part.url) %}
{% if menu_for_part == nil %}
{% assign part_n = part_n | plus: 1 %}
## Part {{part_n}}. {% if part.long_title %}{{part.long_title}}{% else %}{{part.title}}{% endif %}
{% endif %}
{%- for subpart in part.items %}
#### {{subpart.title}}
{%- for section in subpart.items %}
* [{{section.title}}](/{{part.url}}/{{section.url}})
{%-if extended_menu %}
{%- if section.quizzes %} — <span class="has-q">[{{section.quizzes.size}} quiz{% if section.quizzes.size != 1 %}zes{% endif %}](/{{part.url}}/{{section.url}}#practice)</span>{% endif %}
{%- if section.exercises %}
{%if section.quizzes %} and {%- else %} — {%- endif %}
<span class="has-e">[{{section.exercises.size}} exercise{% if section.exercises.size != 1 %}s{% endif %}](/{{part.url}}/{{section.url}}/exercises)</span>
{%- endif %}
{%- endif %}
{%- if compact_menu == nil %}
{%- for topic in section.items %}
- [{{topic.title}}](/{{part.url}}/{{section.url}}/{{topic.url}})
{%- if extended_menu %}
{%- if topic.quizzes %} — <span class="has-q">[{{topic.quizzes.size}} quiz{% if topic.quizzes.size != 1 %}zes{% endif %}](/{{part.url}}/{{section.url}}/{{topic.url}}#practice)</span>{% endif %}
{%- endif %}
{%- endfor %}
{%- endif %}
{%- endfor %}
{% endfor %}
{% endif %}
{% endfor %}