{% extends "playground/base.html" %} {% load i18n static %} {% block title %}{% trans "Courses" %}{% endblock %} {% block main %}

{% trans "Courses" %}

TODO: Whether you’re trying to level up your career, build your side project, or simply play around with programming, you’ve found the right place to start. Explore our programs and courses, try an exercise or two, and join our community of 45 million learners.

{% if highlighted %} {% include "course_app/partials/course_vertical_card.html" with course=highlighted %} {% endif %}

{% trans "Full Catalog" %}

{% if all_courses %}
{% for course in all_courses %} {% include "course_app/partials/course_card.html" with course=course %} {% endfor %}
{% else %} {% endif %}
{% endblock %}