Files @ 61cf00442673
Branch filter:

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

Brett Smith
proposals.forms: Link to one consistent Markdown cheat sheet.

I like this one best because it's most brief, visual, and clearly under a
free license (CC BY-SA 4.0).
{% 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 %}