symposion_app/pinaxcon/templates/404.html

21 lines
454 B
HTML
Raw Normal View History

{% extends "site_base.html" %}
2016-07-03 14:00:50 +00:00
{% load staticfiles %}
{% 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">
2016-07-03 14:00:50 +00:00
<h2>Ooops</h2>
<p>The page you're looking for doesn't exist. Sorry!</p>
</div>
</div>
{% endblock %}
{% endblock %}