Use disabled template for mappings and lists
[cascardo/ipsilon.git] / templates / notfound.html
1 {% extends "master.html" %}
2 {% block main %}
3 <div class="col-sm-12">
4   <h1>404 - Not Found</h1>
5   {% if message: %}
6     <p>{{ message }}</p>
7   {% else %}
8     <p>This page does not exist.</p>
9   {% endif %}
10   <p>If you think this is an error, contact the server administrator to
11      resolve the problem.</p>
12 </div>
13 {% endblock %}