--- layout: default --- {% for tutorial in site.data.sitemap.contents %} {% if tutorial.title == page.title %} {% assign tutorial_index = forloop.index0 %} {% assign content_length = forloop.length %} {% assign previous = tutorial_index | minus: 1 %} {% assign next = tutorial_index | plus: 1 %} {% endif %} {% endfor %}
Home {% if previous >= 0 %} {% assign previous_tutorial = site.data.sitemap.contents[previous] %}
{{ previous_tutorial.title }}
{% endif %}
{{ page.title }}
{% for tutorial in site.data.sitemap.contents %} {% if tutorial.title == page.title %} {% for section in tutorial.sections %} {% unless section.sidenote %} {% endunless %} {% endfor %} {% endif %} {% endfor %} {% if site.data.sitemap.contents[next].title %} {% assign next_tutorial = site.data.sitemap.contents[next] %}
{{ next_tutorial.title }}
{% endif %}
{{content}}
{% if previous >= 0 %} {% assign previous_tutorial = site.data.sitemap.contents[previous] %} {% endif %} {% if site.data.sitemap.contents[next].title %} {% assign next_tutorial = site.data.sitemap.contents[next] %} {% endif %}