mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
15 lines
353 B
Plaintext
Executable File
15 lines
353 B
Plaintext
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>@ViewData["Title"]</title>
|
|
<environment names="Production">
|
|
<link rel="stylesheet" href="dist/my-styles.css" />
|
|
</environment>
|
|
</head>
|
|
<body>
|
|
@RenderBody()
|
|
@RenderSection("scripts", required: false)
|
|
</body>
|
|
</html>
|