---
permalink: /tutorials/
---
## Listing Tutorials
{% assign tutorials = site.pages | where_exp: "p", p.path contains "tutorials/" %}
{% for t in tutorials %}
{% if t.path != "tutorials/index.md" and t.path != "tutorials/README.md" and t.path != "tutorials.md" %}
-
{{ t.title | default: t.path | replace: "tutorials/", "" }}
{% if t.date %} — {% endif %}
{% endif %}
{% endfor %}