Should fix Markdown (#25)
* Markdown editor missing from scripts * Oops forgot staticfiles on wagtail base
This commit is contained in:
parent
08c8f23344
commit
e3f41b4b31
2 changed files with 7 additions and 0 deletions
|
@ -100,6 +100,8 @@
|
|||
</main>
|
||||
{% block scripts %}
|
||||
<script src="{% static 'lca2017/js/app.js' %}"></script>
|
||||
{% include "_scripts.html" %}
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/ace/1.2.0/ace.js"></script>
|
||||
{% block extra_script %}{% endblock %}
|
||||
{% endblock %}
|
||||
{% block extra_body_base %}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{% extends "site_base.html" %}
|
||||
{% load staticfiles %}
|
||||
{% block extra_style %}{% endblock %}
|
||||
{% block body_base %}
|
||||
<div style="height: 100px;" />
|
||||
|
@ -9,3 +10,7 @@
|
|||
{% endblock %}
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
{% block scripts %}
|
||||
<script src="{% static 'lca2017/js/app.js' %}" type="text/javascript"></script>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue