{% extends "base.html" %} {% if not scripts %} {% set scripts = ('forums',) %} {% endif %} {# If we are in an Aurora forum ('aurora' in the slug), we need to tweak the template. #} {% if forum and 'aurora' in forum.slug %} {% set is_aurora = True %} {% set classes = 'aurora-forum' %} {% endif %} {% block breadcrumbs %} {% if is_aurora %} {# Aurora forums don't have the normal breadcrumbs. But if we are on a thread page, we need a way to go back to the main aurora forum page. #} {% if thread %} {% endif %} {% else %} {{ super() }} {% endif %} {% endblock %}