symposion_app/pinaxcon/templates/lca2017/content_page.html
Sachi King 8db0e47107 Cleanup pages for readability
This removes images, and giant headers, and makes the text - not white.
The next layer down in CSS is blue, so that's it for now.

This helps understand what's on the page visually, so this, at the
least, make testing easier for now.
2017-03-31 11:54:46 +11:00

40 lines
918 B
HTML

{% extends "site_base_wagtail.html" %}
{% load staticfiles %}
{% load pyconau2017_tags %}
{% load sitetree %}
{% load i18n %}
{% block body_class %}template-content-page{% endblock %}
{% block head_title %}{% endblock %}
{% block body %}
{% block heading_panel %}
<div class="panel panel__compact panel__bg">
<div class="panel--content">
<div class="panel--2-3">
<h2>{% block header_title %}{% endblock %}</h2>
<p class="lede">{% block header_paragraph %}{% endblock %}</p>
</div>
</div>
</div>
{% endblock %}
{% block content_base %}
<div class="l-content-page">
<div class="l-content-page--richtext">
{% block content %}
{% endblock %}
</div>
</div>
{% endblock %}
{% endblock %}
{% block extra_script %}
<script src="{% static 'js/site-92ae8d0d6c.js' %}" type="text/javascript"></script>
{% endblock %}