Files @ 1886323d7431
Branch filter:

Location: symposion_app/pinaxcon/templates/404.html

Sachi King
Bootstrapification

Boot custom CSS, and put some base, standard css in its place.
Shame I did not start with fresh Bootstrap4, but oh well.

Some more templates could be made to make this less messy, which would
be good.
{% extends "site_base.html" %}
{% 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">
        <h2>Ooops</h2>

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