Skip to content

Commit 034e3a8

Browse files
committed
add language to <html> tag
Signed-off-by: Paolo Bonzini <[email protected]>
1 parent b018129 commit 034e3a8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

_layouts/blog.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
66
-->
77
{% include relative_root.html %}
8-
<html>
8+
<html lang="en">
99
<head>
1010
<title>{{ page.title }} - {{ site.title }}</title>
1111
{% include assets.html %}

_layouts/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
66
-->
77
{% include relative_root.html %}
8-
<html>
8+
<html lang="en">
99
<head>
1010
<title>{{ site.title }}</title>
1111
{% include assets.html %}

_layouts/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
66
-->
77
{% include relative_root.html %}
8-
<html>
8+
<html lang="en">
99
<head>
1010
<title>{{ page.title }} - {{ site.title }}</title>
1111
{% include assets.html %}

_plugins/alias_generator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def generate_aliases(destination_path, aliases)
8080
def alias_template(destination_path)
8181
<<-EOF
8282
<!DOCTYPE html>
83-
<html>
83+
<html lang="en">
8484
<head>
8585
<link rel="canonical" href="#{destination_path}"/>
8686
<meta http-equiv="content-type" content="text/html; charset=utf-8" />

0 commit comments

Comments
 (0)