Skip to content

Commit

Permalink
💄 Add template to handle 404 error (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanhercaz committed Dec 7, 2019
1 parent 6f18a7f commit 92d8e4a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions templates/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{% extends "base.html" %}

{% block title %}
{% trans %}Page does not exist!{% endtrans %} - {{ super() }}
{% endblock title %}

{% block content %}
<div class="notification is-error">
<p>{% trans %}The page you requested doesn't exist!{% endtrans %}</p>
</div>
{% endblock content %}

0 comments on commit 92d8e4a

Please sign in to comment.