aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/wiki/base.html
blob: c47f6bfbbaed7da1105be3eab1a0352557ede8cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{% extends "base/base.html" %}
{% load static %}
{% load wiki_tags %}

{% block title %}
  Wiki | {% block wiki_pagetitle %}{% endblock %}{% block wiki_site_title %}{% endblock %}
{% endblock %}

{% block head %}
  {{ block.super }}

  <script src="{% static "wiki/js/jquery-3.3.1.min.js" %}" type="text/javascript"></script>
  <script src="{% static "wiki/js/core.js" %}" type="text/javascript"></script>
  <script src="{% static "js/wiki/simplemde.min.js" %}" type="text/javascript"></script>

  <link rel="stylesheet" href="{% static "css/wiki/simplemde.min.css" %}">
  <link rel="stylesheet" href="{% static "css/wiki/simplemde-fixes.css" %}">
  <link rel="stylesheet" href="{% static "css/wiki/style.css" %}">
{% endblock %}

{% block content %}
  {% block site_navbar %}
    {% include "base/navbar.html" with active_item=True dropdowns=True icon_weight="far" use_logo=True %}
  {% endblock %}

  {% block wiki_navbar %}{% endblock %}

  {% block wiki_breadcrumbs %}
    {% include "wiki/includes/breadcrumbs.html" %}
  {% endblock %}

  {% block wiki_body %}
    <section class="section">
      <div class="container">
        {% wiki_messages %}

        <div class="content">
          {% block wiki_contents %}{% endblock %}
        </div>
      </div>
    </section>
  {% endblock %}

  {% block site_footer %}
    {% block wiki_footer_prepend %}{% endblock %}

    {{ block.super }}
  {% endblock %}

  <script src="{% static "js/wiki/dropdown.js" %}" type="text/javascript"></script>
  <script src="{% static "js/wiki/load_editor.js" %}" type="text/javascript"></script>
{% endblock %}