{{ category }}
{% assign found_lessons = false %}
{% for lesson in grammar_pages %}
{% if lesson.category contains category %}
{% assign found_lessons = true %}
{% endfor %}
{% else %}
{{ lesson.title }}
{% endif %} {% endfor %} {% unless found_lessons %}Lessons coming soon
{% endunless %}
Syntax Tutorials
{% if grammar_pages.size > 0 %}
{% for lesson in grammar_pages %}
{% endif %}
{{ lesson.title }}
{% endfor %} {% else %}No syntax tutorials yet. Check back soon!
{% endif %}