symposion_app/pinaxcon/templates/404.html
Nick Seidenman (N6) a00fc7845e Added some css to make text visible on 404 and 404 pages.
Removed references to non-existent content—page-header-panel.html.
2017-02-05 09:45:12 +11:00

22 lines
510 B
HTML

{% extends "site_base_wagtail.html" %}
{% load staticfiles %}
{% load wagtailcore_tags %}
{% load sitetree %}
{% 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 %}