c37ed61036
This should eradicate wagtail from the project. While wagtail may be nice, our goals are to keep all things public, and having things locked behidn a DB is congruent to that plan. All in all, the django project only leveraged a single wagtail feature, "richtext" which has been hacikly removed and will result in bad display of however it comes up. But this is on homepage.html, which will be removed and covered up with a static website, which means we should be able remove homepage entirely from this project. This reduction hopefully makes the monolith easier to understand, maintain, and wield.
51 lines
1.4 KiB
HTML
51 lines
1.4 KiB
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 %}
|
|
THIS IS THE LCA PAGE CONTENT
|
|
{% block heading_panel %}
|
|
<div class="panel panel__compact panel__bg">
|
|
|
|
<div style="background-image: url('{% block header_background_image %}{% endblock %}');" class="panel--bg"></div>
|
|
|
|
<h1>Or is it here?</h1>
|
|
<div class="panel--content">
|
|
<div class="panel--2-3">
|
|
<h2>{% block header_title %}{% endblock %}</h2>
|
|
<p class="lede">{% block header_paragraph %}{% endblock %}</p>
|
|
</div>
|
|
{% block header_inset_image_base %}
|
|
<div class="panel--1-3">
|
|
<div class="portrait">
|
|
<div style="background-image: url('{% block header_inset_image %}{% endblock %}');" class="portrait--img"></div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
</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 %}
|