---
layout: page
---
Building tutorial summary
- {% if page.description == "Introduction" %}{% endif %}Introduction{% if page.description == "Introduction" %}{% endif %}
{%- assign tuto_steps = site.tutorials | sort : 'step' -%}
{%- for tuto_step in tuto_steps -%}
{%- if forloop.first -%}
{%- assign first_step = tuto_step -%}
{%- endif -%}
{%- if page.description == tuto_step.description -%}
{%- unless forloop.first -%}
{%- assign prev_step = tmpprev -%}
{%- endunless -%}
{%- unless forloop.last -%}
{%- assign next_step = tuto_steps[forloop.index] -%}
{%- endunless -%}
- {{ tuto_step.description }}
{%- else -%}
- {{ tuto_step.description }}
{%- endif -%}
{%- assign tmpprev = tuto_step -%}
{%- endfor -%}
{{ page.description }}
{{ content }}
{%- if prev_step -%}
< Previous
{%- endif -%}
Home
{%- if next_step -%}
Next >
{%- else -%}
{%- if page.description == "Introduction" -%}
Next
{%- endif -%}
{%- endif -%}