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