{% extends 'portal/layout/default.html.twig' %}
{% block meta %}
{% include 'portal/components/_meta.html.twig' with {'meta':category.meta} %}
{% endblock meta %}
{% block body %}
{{ category.title }}
{% for lesson in category.lessons %}
{% if lesson.isActive %}
{% include 'portal/lesson/components/_card_list.html.twig' %}
{% endif %}
{% endfor %}