From c8687a4a4073b3e40d33b055d75a1320935ba720 Mon Sep 17 00:00:00 2001 From: William Martin Stewart Date: Mon, 2 Jan 2017 10:58:12 +0200 Subject: [PATCH] Inconsistent title case in 404 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 0d7a787f8..1687ef311 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 %}