5347a7efae
Sponsorship ... getting there.
33 lines
984 B
HTML
33 lines
984 B
HTML
<!-- site_base_wagtail.html -->
|
|
{% extends "site_base.html" %}
|
|
{% load staticfiles %}
|
|
{% block extra_style %}{% endblock %}
|
|
|
|
{% comment %}
|
|
{% block body_base %}
|
|
{% include "_messages.html" %}
|
|
|
|
<!-- site_base_wagtail.html block body -->
|
|
{% block body %}
|
|
<!-- begin content -->
|
|
{% block content %}
|
|
{% endblock %}
|
|
<!-- end content -->
|
|
{% endblock %}
|
|
<!-- site_base_wagtail.html enblock body -->
|
|
{% endblock %}
|
|
{% endcomment %}
|
|
|
|
{% block scripts %}
|
|
|
|
<script src="{% static 'pyconau2017/js/app.js' %}" type="text/javascript"></script>
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
|
|
<script src="{% static 'pyconau2017/js/load_editors.js' %}" type="text/javascript"></script>
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/ace/1.2.3/ace.js"></script>
|
|
<script src="{{ STATIC_URL }}js/jquery.formset.js"></script>
|
|
|
|
{% block scripts_extra %}
|
|
{% endblock %}
|
|
|
|
<!-- end site_base_wagtail.html -->
|
|
{% endblock %}
|