diff options
author | Andrew Donnellan <ajd@linux.ibm.com> | 2019-10-31 17:57:37 +1100 |
---|---|---|
committer | Daniel Axtens <dja@axtens.net> | 2019-11-05 08:47:44 +1100 |
commit | b5e8a764243e3a8f264bf15fa45f7bcea9ef9c05 (patch) | |
tree | 8685ff84ace0a0e3f1fe959a4e78e31497def95e /templates | |
parent | db936c178b98a4a90b1f1e69740f9350e11e3a93 (diff) | |
download | patchwork-b5e8a764243e3a8f264bf15fa45f7bcea9ef9c05.tar patchwork-b5e8a764243e3a8f264bf15fa45f7bcea9ef9c05.tar.gz |
templates: Specify language
Specifying language in the <html> tag is recommended in HTML5.
Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
Signed-off-by: Daniel Axtens <dja@axtens.net>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index 01b0d6b..40b6cda 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,6 +1,6 @@ {% load static %} <!DOCTYPE html> -<html xmlns="http://www.w3.org/1999/xhtml"> +<html xmlns="http://www.w3.org/1999/xhtml" lang="en-AU"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <title>{% block title %}Patchwork{% endblock %} - Patchwork</title> |