Files @ 9e851c31fac3
Branch filter:

Location: symposion_app/pinaxcon/templates/404.html

Sachi King
Remove dj-user-accounts

That's a nice macro, but we don't need it.
dj-user-accounts stands in the way of using more generic AUTN_METHODS
{% extends "site_base_wagtail.html" %}
{% load staticfiles %}
{% load wagtailcore_tags %}

{% load i18n %}

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

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

{% block body %}
  {% block content %}
    <div class="l-content-page">
      <div class="l-content-page--richtext ooops-hack">
        <h2>Ooops</h2>

        <p>The page you're looking for doesn't exist. Sorry!</p>
      </div>
    </div>
  {% endblock %}
{% endblock %}