{% extends "public_base.html" %} {% from "courses/_visibility.html" import withheld_badge %} {% block title %}{{ course.name }} ยท {{ site.name }}{% endblock %} {% block hero %} {{ render_block('hero', eyebrow=_('Course'), title=course.name, subtitle=course.description) }} {% endblock %} {% block content %}

{{ withheld_badge(course) }}

{% for category, pages in sections %}

{{ category.name }} {{ withheld_badge(category) }}

{% else %}

{{ _('This course has no material published yet.') }}

{% endfor %} {% if uncategorised %}

{{ _('Other material') }}

{% endif %}

{{ _('All courses') }}

{% endblock %}