{% extends 'base.html' %} {% load static %} {% block content %}

Elevate Your Future with Expert Guidance

Discover a curated catalog of world-class courses taught by leading academics and industry professionals.

Our Courses

{% for course in courses %}
{% if course.image_url %} {{ course.title }} {% else %}
No Image Available
{% endif %}
{{ course.level }} ${{ course.price }}
{{ course.title }}

{{ course.description|truncatewords:20 }}

{% if course.instructor.photo_url %} {% endif %} By {{ course.instructor.name }}
{% empty %}

No courses found matching your criteria.

{% endfor %}
{% endblock %}