symposion_app/pinaxcon/templates/utility_page.html
Sachi King 1ba1a97c45 move templates out of vendor specific locations
Lets not kid ourselves.  The whole apps templates are client specific.
Lets just remove that and not think it isn't.
2017-04-16 16:30:45 +10:00

24 lines
688 B
HTML

{% extends "content_page.html" %}
{% load staticfiles %}
{% comment %}
{% block header_background_image %}{% static 'pyconau2017/images/wineglass_bg_optimised.jpg' %}{% endblock %}
{% endcomment %}
{% block header_title %}{% block page_title %}{% endblock %}{% endblock %}
{% block header_inset_image_base %}{% endblock %}
{% block content_base %}
{% block utility_body_outer %}
<div class="l-content-page">
<div class="l-content-page--richtext">
{% block content %}
<div class="jumbotron">
{% block utility_body %}
{% endblock %}
</div>
{% endblock content %}
</div>
</div>
{% endblock %}
{% endblock %}