Skip to content

Commit

Permalink
fix: Specify value of lang attribute in templates (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
thelovekesh committed Oct 15, 2020
1 parent cd74bd2 commit 8a9b79d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/templates/about.ejs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">

<head>
<meta charset="UTF-8" />
Expand Down
2 changes: 1 addition & 1 deletion app/templates/article.ejs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">

<head>
<meta charset="UTF-8" />
Expand Down
2 changes: 1 addition & 1 deletion app/templates/articles.ejs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">

<head>
<meta charset="UTF-8" />
Expand Down
2 changes: 1 addition & 1 deletion app/templates/index.ejs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">

<head>
<meta charset="UTF-8" />
Expand Down
2 changes: 1 addition & 1 deletion app/templates/work.ejs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">

<head>
<meta charset="UTF-8" />
Expand Down
2 changes: 1 addition & 1 deletion app/templates/works.ejs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">

<head>
<meta charset="UTF-8" />
Expand Down

0 comments on commit 8a9b79d

Please sign in to comment.