data_explorer/templates/404.html
{% extends "base.html" %}
{% load staticfiles %}
{% block body_class %}content--skinny{% endblock %}
{% block body %}
<div class="container">
<div class="card">
<div class="content">
<h1>InCALCulable!</h1>
<p>We're sorry, but that page doesn't exist. Try going back to the <a href="{% url 'index' %}" title="CALC Homepage">CALC Homepage</a>.</p>
</div>
</div>
</div>
{% endblock %}