layout.html 534 Bytes
Newer Older
Yuge Zhang's avatar
Yuge Zhang committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "!layout.html" %}

{#- TO INJECT INFORMATION FROM READTHEDOCS HERE #}
{% block scripts %}
  {{ super() }}
  {% if versions %}
  <script type="text/javascript">
    READTHEDOCS_VERSIONS = {{ versions | tojson }}
  </script>
  {% endif %}
{% endblock %}

{#- REPLACE ATTRIBUTES INSTANTLY TO DISABLE SOME HOOKS #}
{% block footer_scripts %}
<script type="text/javascript">
  // try to disable original hook for md-source.
  $('*[data-md-source="github"]').attr("data-md-source", "nni");
</script>
{{ super() }}
{% endblock %}