layout | title | slug | js_asset |
---|---|---|---|
tutorials |
Tutorials |
tutorials |
tutorials |
-
{% for tutorials_item in site.tutorials %}
{% if tutorials_item.level == 'basic' %}
-
{{ tutorials_item.time_needed }} {{ tutorials_item.level }}
<h2 id="{{ tutorials_item.title | downcase | replace: ' ', '-' | replace: ',', '' | replace: '.', '' }}"><a href="{{ tutorials_item.url }}">{{ tutorials_item.title }}</a></h2> <p class="light">{{ tutorials_item.short_description }}</p> </li>
{% endif %} {% endfor %}
{% for tutorials_item in site.tutorials %} {% if tutorials_item.level == 'medium' %}
-
{{ tutorials_item.time_needed }} {{ tutorials_item.level }}
<h2 id="{{ tutorials_item.title | downcase | replace: ' ', '-' | replace: ',', '' | replace: '.', '' }}"><a href="{{ tutorials_item.url }}">{{ tutorials_item.title }}</a></h2> <p class="light">{{ tutorials_item.short_description }}</p> </li>
{% endif %} {% endfor %}
{% for tutorials_item in site.tutorials %} {% if tutorials_item.level == 'hard' %}
-
{{ tutorials_item.time_needed }} {{ tutorials_item.level }}
<h2 id="{{ tutorials_item.title | downcase | replace: ' ', '-' | replace: ',', '' | replace: '.', '' }}"><a href="{{ tutorials_item.url }}">{{ tutorials_item.title }}</a></h2> <p class="light">{{ tutorials_item.short_description }}</p> </li>
{% endif %} {% endfor %}