f058ed7d71
* Remove the outdated compiled javascript once again * Update the sitetree_header template to use more detail. The extra detail here is taken from the menu_bootstrap3.html template distributed with django-sitetree
22 lines
428 B
HTML
22 lines
428 B
HTML
{% extends "site_base.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% load pyconau2017_tags %}
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
{% block body_class %}template-content-page{% endblock %}
|
|
|
|
{% block head_title %}{% endblock %}
|
|
|
|
{% block body %}
|
|
{% block content_base %}
|
|
<div class="l-content-page">
|
|
<div class="l-content-page--richtext">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% endblock %}
|