Changeset - e3f41b4b317f
[Not reviewed]
0 2 0
Scott Bragg - 8 years ago 2016-06-27 03:21:24
jsbragg@scriptforge.org
Should fix Markdown (#25)

* Markdown editor missing from scripts

* Oops forgot staticfiles on wagtail base
2 files changed with 7 insertions and 0 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/site_base.html
Show inline comments
...
 
@@ -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 %}
pinaxcon/templates/site_base_wagtail.html
Show inline comments
 
{% 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 %}
0 comments (0 inline, 0 general)