{% extends "main_django.html" %} {% load pipeline %}{% load sekizai_tags i18n microsite %}{% load url from future %}{% load staticfiles %} {% block title %}{% block pagetitle %}{% endblock %} | {% trans "Wiki" %} | {% platform_name %}{% endblock %} {% block bodyclass %}view-in-course view-wiki{% endblock %} {% block headextra %} {% stylesheet 'course' %} {% stylesheet 'style-course-vendor' %} {% stylesheet 'style-course' %} {% addtoblock 'js' %} {% comment %} These scripts load at the bottom of the body {% endcomment %} {% with mathjax_mode='wiki' %} {% include "mathjax_include.html" %} {% endwith %} {% endaddtoblock %} {% endblock %} {% block body %} {% if request.course %} {% with course=request.course %} {% include "courseware/course_navigation.html" with active_page_context="wiki" %} {% endwith %} {% endif %}
{% block wiki_body %} {% block wiki_breadcrumbs %}{% endblock %} {% if messages %} {% for message in messages %}
× {{ message }}
{% endfor %} {% endif %} {% block wiki_contents %}{% endblock %} {% endblock %}
{% endblock %}