feed83f517
* Proposals forms now have a header panel * Adds panels to the speaker forms * Imports latest pinax accounts templates * speakers/base and proposals/base now derive from utility_page.html * Most login forms now derive from take flight themes * Missed email_confirm * More accounts bits * Restructures login form * Puts submit etc buttons inside fieldset borders
26 lines
738 B
HTML
26 lines
738 B
HTML
{% extends "site_base_wagtail.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block body %}
|
|
<div class="panel panel__compact panel__bg">
|
|
<div style="background-image: url('{% static 'lca2017/images/wineglass_bg_optimised.jpg' %}');" class="panel--bg"></div>
|
|
<div class="panel--content">
|
|
<h2>{% block page_title %}{% endblock %}</h2>
|
|
<br />
|
|
<br />
|
|
</div>
|
|
</div>
|
|
|
|
{% block utility_body_outer %}
|
|
<div class="l-content-page">
|
|
<div class="l-content-page--richtext">
|
|
{% block utility_body %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% endblock %}
|
|
|
|
{% block extra_script %}
|
|
<script src="{% static 'js/site-92ae8d0d6c.js' %}" type="text/javascript"></script>
|
|
{% endblock %}
|