symposion_app/pinaxcon/templates/site_base_wagtail.html
Scott Bragg e3f41b4b31 Should fix Markdown (#25)
* Markdown editor missing from scripts

* Oops forgot staticfiles on wagtail base
2016-06-27 13:21:24 +10:00

16 lines
425 B
HTML

{% extends "site_base.html" %}
{% load staticfiles %}
{% block extra_style %}{% endblock %}
{% block body_base %}
<div style="height: 100px;" />
<main role="main">
{% include "_messages.html" %}
{% block body %}
{% block content %}
{% endblock %}
{% endblock %}
{% endblock %}
{% block scripts %}
<script src="{% static 'lca2017/js/app.js' %}" type="text/javascript"></script>
{% endblock %}