Files @ d3a8b39a7b01
Branch filter:

Location: symposion_app/pinaxcon/templates/cms_pages/news_page.html

Christopher Neugebauer
Adds 2em to the bottom of the illustration div in compact panels (#26)
{% extends "site_base_wagtail.html" %}

{% load wagtailcore_tags %}
{% load wagtailimages_tags %}

{% load sitetree %}
{% load i18n %}

{% block body_class %}template-blogpage{% endblock %}

{% block head_title %}{{ page.title }}{% endblock %}

{% block body %}
  {% block content %}
    {% include "cms_pages/content_page_header_panel.html" %}
    <div class="l-content-page">
      <div class="l-content-page--richtext">
        <p><em>{{ page.date|date:"j F Y" }}</em></p>
        {{ page.body|richtext }}
      </div>
    </div>
  {% endblock %}
{% endblock %}