1ba1a97c45
Lets not kid ourselves. The whole apps templates are client specific. Lets just remove that and not think it isn't.
24 lines
688 B
HTML
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 %}
|