summaryrefslogtreecommitdiff
path: root/.templates/base.html
blob: a3e3f7af9ab3dbda3a1115b177e9454483e0a0bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends 'markdoc-default/base.html' %}
{% block css %}
{{ super() }}
{{ html.cssimport(make_relative("/media/css/custom.css")) }}
{% endblock %}

{% block body_footer %}
<div id="footer">
  <p>
    {% if 'wiki-name' in config %}
      {{ config['wiki-name']|e }}{% endif %}
    Powered by <a href="http://markdoc.org/">Markdoc</a>.
    {% block github_info %}
    <a href="https://github.com/ojacobson/grimoiredotca">See it on GitHub</a>.
    {% endblock %}
  </p>
</div>
{% endblock %}