![Sachi King](/assets/img/avatar_default.png)
Boxes takes content directly from the DB and drops it into the django templates. This is rather ugly and goes against keeping as much as we can in static locations. As such, this is being dropped.
21 lines
490 B
HTML
21 lines
490 B
HTML
{% 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 %}
|