Should fix Markdown (#25)

* Markdown editor missing from scripts

* Oops forgot staticfiles on wagtail base
This commit is contained in:
Scott Bragg 2016-06-27 13:21:24 +10:00 committed by GitHub
parent 08c8f23344
commit e3f41b4b31
2 changed files with 7 additions and 0 deletions

View file

@ -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 %}

View file

@ -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 %}