mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
17 lines
525 B
Plaintext
17 lines
525 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>@ViewData["Title"] - WebApplicationBasic</title>
|
|
<base href="/" />
|
|
<link rel="stylesheet" href="~/dist/vendor.css" asp-append-version="true" />
|
|
<link rel="stylesheet" href="~/dist/styles.css" asp-append-version="true" />
|
|
</head>
|
|
<body>
|
|
@RenderBody()
|
|
|
|
@RenderSection("scripts", required: false)
|
|
</body>
|
|
</html>
|