Skip to content

Commit

Permalink
Added default language to the HTML.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdoms committed Apr 29, 2021
1 parent 98248b9 commit 0ed30f3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion views/_base.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html>
<html lang="en-us">
<head>
<meta charset="utf-8"/>

Expand All @@ -21,6 +21,10 @@
{% end %}

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!-- this is declared other places, but bing needs this specifically for full SEO points -->
<meta http-equiv="content-language" content="en-us">

<link rel="shortcut icon" href="{{static('i/favicon.png')}}" />
<link rel="apple-touch-icon-precomposed" href="{{static('i/favicon-152.png')}}">

Expand Down
6 changes: 5 additions & 1 deletion views/svelte.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html>
<html lang="en-us">
<head>
<meta charset="utf-8"/>

Expand All @@ -8,6 +8,10 @@
<meta name="description" content="Site Name"/>

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!-- this is declared other places, but bing needs this specifically for full SEO points -->
<meta http-equiv="content-language" content="en-us">

<link rel="shortcut icon" href="{{static('i/favicon.png')}}" />
<link rel="apple-touch-icon-precomposed" href="{{static('i/favicon-152.png')}}">

Expand Down
6 changes: 5 additions & 1 deletion views/vue.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html>
<html lang="en-us">
<head>
<meta charset="utf-8"/>

Expand All @@ -8,6 +8,10 @@
<meta name="description" content="Site Name"/>

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!-- this is declared other places, but bing needs this specifically for full SEO points -->
<meta http-equiv="content-language" content="en-us">

<link rel="shortcut icon" href="{{static('i/favicon.png')}}" />
<link rel="apple-touch-icon-precomposed" href="{{static('i/favicon-152.png')}}">

Expand Down

0 comments on commit 0ed30f3

Please sign in to comment.