Inconsistent title case in 404 (#974)

We should either title case it or just capitalise the first letter, imho.
This commit is contained in:
William Martin Stewart 2017-02-13 20:44:02 +02:00 committed by Daniel Roy Greenfeld
parent 4d567c7d8e
commit f298ef7722

View File

@ -1,9 +1,9 @@
{% raw %}{% extends "base.html" %}
{% block title %}Page Not found{% endblock %}
{% block title %}Page not found{% endblock %}
{% block content %}
<h1>Page Not found</h1>
<h1>Page not found</h1>
<p>This is not the page you were looking for.</p>
{% endblock content %}{% endraw %}