Newer
Older
Bridger Maxwell
committed
{% extends "main_django.html" %}
Bridger Maxwell
committed
{% load compressed %}{% load sekizai_tags i18n %}{% load url from future %}
Bridger Maxwell
committed
{% block title %}<title>{% block pagetitle %}{% endblock %} | edX Wiki</title>{% endblock %}
Bridger Maxwell
committed
{% block headextra %}
{% compressed_css 'course' %}
<script src="{{ STATIC_URL }}js/bootstrap-modal.js"></script>
Bridger Maxwell
committed
{% endblock %}
Bridger Maxwell
committed
{% block body %}
Bridger Maxwell
committed
{% if course %}
{% include "course_navigation.html" with active_page_context="wiki" %}
{% endif %}
{% block wiki_body %}
{% block wiki_breadcrumbs %}{% endblock %}
{% if messages %}
{% for message in messages %}
<div class="alert alert-{{ message.tags }}">
<a class="close" data-dismiss="alert" href="#">×</a>
{{ message }}
</div>
{% endfor %}
{% endif %}
{% block wiki_contents %}{% endblock %}
{% endblock %}
</section>
Bridger Maxwell
committed
{% endblock %}