{% extends "templates/base.html" %} {% block title %}{{ course.course_name }}{% endblock %} {% from "www/lms/macros/hero.html" import hero %} {% from "www/lms/macros/card.html" import null_card %} {% block head_include %} {% endblock %} {% macro card(topic) %}
{% if has_access %} {% else %} {% endif %} {% if topic.hero_image %}
{% else %}
{% endif %}
{% if has_access %} {% else %} {% endif %}
{% endmacro %} {% block content %}
{{ hero(course.course_name, course.description, has_access, {'name': 'Program', 'url': '/lms/program?program=' + program }) }}
{% for topic in topics %} {{ card(topic) }} {% endfor %} {% if topics %} {% for n in range( (3 - (topics|length)) %3) %} {{ null_card() }} {% endfor %} {% endif %}
{% endblock %}