{% extends "public_base.html" %} {% from "courses/_visibility.html" import withheld_badge %} {% block title %}{{ _('Courses') }} ยท {{ site.name }}{% endblock %} {% block hero %} {{ render_block('hero', eyebrow=site.name, title=_('Courses'), subtitle=_('Every academic year, newest first.')) }} {% endblock %} {% block content %}
{% for course in courses %}

{{ course.name }}

{{ withheld_badge(course) }}

{% if course.description %}

{{ course.description }}

{% endif %}
{% else %}

{{ _('There is nothing published here yet.') }}

{% endfor %}
{% endblock %}