2016-11-28 18:08:26 -05:00
|
|
|
{% extends 'templates/default.twig' %}
|
|
|
|
|
|
|
|
{% block title %}404 Error{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<!-- Error information section -->
|
|
|
|
<section id="error-section" class="row">
|
|
|
|
<div class="col-xs-12 card hover-box shadow-1">
|
|
|
|
<h4>404 Error</h4>
|
2016-11-28 18:11:36 -05:00
|
|
|
<p>The URL you were looking for doesn't exist. Perhaps you'd like to start over at the <a href="{{ urlFor('home') }}">home page</a>?</p>
|
2016-11-28 18:08:26 -05:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{% endblock %}
|