aboutsummaryrefslogblamecommitdiffstats
path: root/pyblackbird_cc/templates/404.html
blob: 2399b7933a0f4ac1b41fe8638f3654c5f3fec56f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                
{% extends "base.html" %}

{% block title %}
  Page not found
{% endblock title %}
{% block content %}
  <h1>Page not found</h1>
  <p>
    {% if exception %}
      {{ exception }}
    {% else %}
      This is not the page you were looking for.
    {% endif %}
  </p>
{% endblock content %}