From f298ef7722ac9a0ecf1e46be9d955bf79afa35d5 Mon Sep 17 00:00:00 2001 From: William Martin Stewart Date: Mon, 13 Feb 2017 20:44:02 +0200 Subject: [PATCH] Inconsistent title case in 404 (#974) We should either title case it or just capitalise the first letter, imho. --- .../{{cookiecutter.project_slug}}/templates/404.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/404.html b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/404.html index 0d7a787f..1687ef31 100644 --- a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/404.html +++ b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/404.html @@ -1,9 +1,9 @@ {% raw %}{% extends "base.html" %} -{% block title %}Page Not found{% endblock %} +{% block title %}Page not found{% endblock %} {% block content %} -

Page Not found

+

Page not found

This is not the page you were looking for.

{% endblock content %}{% endraw %}