{% extends "templates/base.html" %} {% block content %} {{ HeroSection() }} {{ ExploreCourses(courses) }} {{ RecentSketches(recent_sketches) }} {% endblock %} {% macro HeroSection() %}

Guided online courses, with a mentor at your back.

Hands-on online courses designed by experts, delivered by passionate mentors.

{{ widgets.RequestInvite() }}
{% endmacro %} {% macro ExploreCourses(courses) %}

Explore Courses

{% for course in courses %}
{{ widgets.CourseTeaser(course=course) }}
{% endfor %}
{% endmacro %} {% macro RecentSketches(sketches) %}

Recent Sketches

{% for sketch in sketches %}
{{ widgets.SketchTeaser(sketch=sketch) }}
{% endfor %}
{% endmacro %}