Skip to content

Commit 09cbb63

Browse files
committed
fix: fix html5 syntax
ref aurelia/templating#647 (comment)
1 parent d241d65 commit 09cbb63

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/resources/content/javascriptservices/Views/Shared/_Layout.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta charset="utf-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>@ViewData["Title"] - Aurelia</title>
77

8-
<link rel="stylesheet" href="~/dist/vendor.css" asp-append-version="true" />
8+
<link rel="stylesheet" href="~/dist/vendor.css" asp-append-version="true">
99
</head>
1010
<body>
1111
@RenderBody()

lib/resources/content/javascriptservices/Views/Shared/_Layout.cshtml.readme.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ Open at Views/Shared/_Layout.cshtml.readme.txt and make sure that it contains th
33
<!DOCTYPE html>
44
<html>
55
<head>
6-
<meta charset="utf-8" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<meta charset="utf-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
88
<title>@ViewData["Title"] - Aurelia</title>
99

10-
<link rel="stylesheet" href="~/dist/vendor.css" asp-append-version="true" />
10+
<link rel="stylesheet" href="~/dist/vendor.css" asp-append-version="true">
1111
</head>
1212
<body>
1313
@RenderBody()

0 commit comments

Comments
 (0)