From e3f41b4b317ff64181d3f728e73ab9c8390ffd60 Mon Sep 17 00:00:00 2001 From: Scott Bragg Date: Mon, 27 Jun 2016 13:21:24 +1000 Subject: [PATCH] Should fix Markdown (#25) * Markdown editor missing from scripts * Oops forgot staticfiles on wagtail base --- pinaxcon/templates/site_base.html | 2 ++ pinaxcon/templates/site_base_wagtail.html | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/pinaxcon/templates/site_base.html b/pinaxcon/templates/site_base.html index 0cf9670b..4521794e 100755 --- a/pinaxcon/templates/site_base.html +++ b/pinaxcon/templates/site_base.html @@ -100,6 +100,8 @@ {% block scripts %} + {% include "_scripts.html" %} + {% block extra_script %}{% endblock %} {% endblock %} {% block extra_body_base %} diff --git a/pinaxcon/templates/site_base_wagtail.html b/pinaxcon/templates/site_base_wagtail.html index bd350833..dc7d6759 100644 --- a/pinaxcon/templates/site_base_wagtail.html +++ b/pinaxcon/templates/site_base_wagtail.html @@ -1,4 +1,5 @@ {% extends "site_base.html" %} +{% load staticfiles %} {% block extra_style %}{% endblock %} {% block body_base %}
@@ -9,3 +10,7 @@ {% endblock %} {% endblock %} {% endblock %} + +{% block scripts %} + +{% endblock %}