summaryrefslogtreecommitdiffstats
path: root/templates/notfound.html
blob: 71743b5a5be07d4fcfddaae3fea62cb77648185c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "master.html" %}
{% block main %}
<div class="col-sm-12">
  <h1>404 - Not Found</h1>
  {% if message: %}
    <p>{{ message }}</p>
  {% else %}
    <p>This page does not exist.</p>
  {% endif %}
  <p>If you think this is an error, contact the server administrator to
     resolve the problem.</p>
</div>
{% endblock %}