Skip to content
Snippets Groups Projects
base.html 1.78 KiB
Newer Older
{% load compressed %}{% load sekizai_tags i18n %}{% load url from future %}{% load staticfiles %}

{% block title %}<title>{% block pagetitle %}{% endblock %} | edX Wiki</title>{% endblock %}

{% block headextra %}
  {% compressed_css 'course' %}
  <script type="text/javascript">
    function ajaxError(){}
    
    $.ajaxSetup({
      timeout: 7000,
      cache: false,
      error: function(e, xhr, settings, exception) {
          ajaxError();
      }
    });

    function jsonWrapper(url, callback) {
      $.getJSON(url, function(data) {
        if (data == null) {
          ajaxError();
        } else {
          callback(data);
        }
      });
    }
  </script>
  
  
  {% addtoblock 'js' %}
    {% comment %} These scripts load at the bottom of the body {% endcomment %}
  
    <script src="{% static 'js/bootstrap-alert.js' %}"></script>
    <script src="{% static 'js/bootstrap-collapse.js' %}"></script>
    <script src="{% static 'js/bootstrap-modal.js' %}"></script>
    
    {% with mathjax_mode='wiki' %}
      {% include "mathjax_include.html" %}
    {% endwith %}
    
  {% endaddtoblock %}
  
    {% include "courseware/course_navigation.html" with active_page_context="wiki" %}
Tom Giannattasio's avatar
Tom Giannattasio committed
  <section class="container wiki {{ selected_tab }}">
Tom Giannattasio's avatar
Tom Giannattasio committed

    {% 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="#">&times;</a>
            {{ message }}
          </div>
        {% endfor %}
      {% endif %}
      
      {% block wiki_contents %}{% endblock %}
      
    {% endblock %}

  </section>