Files @ f00214d81df5
Branch filter:

Location: CopyleftConf/copyleftconf-website/pinaxcon/templates/page_with_title_and_lede.html

Brett Smith
setup.txt: Pin django-models-utils for Python 2 compatibility.

This is mostly documentation for my future self in case it becomes
relevant.
{% extends "site_base.html" %}

{% block head_title %}{% block title %}{% endblock %}{% endblock %}

{% block body %}

  {% block heading_base %}
    <h1>{% block heading %}{% endblock %}</h1>
  {% endblock %}

  {% block lede_base %}
    <p class="lead">{% block lede %}{% endblock %}</p>
  {% endblock %}

  {% block content %}
  {% endblock %}

{% endblock %}