Files @ a7b619a2fdce
Branch filter:

Location: symposion_app/pinaxcon/templates/content_page.html

James Polley
Need to list items per-user

Without this important line, each user gets the same manifest. not helpful.
{% extends "site_base.html" %}
{% load staticfiles %}

{% load lca2018_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 %}