Files
JavaScriptServices/samples/misc/ES2015Transpilation/Views/Shared/_Layout.cshtml
2016-03-01 01:10:43 +00:00

12 lines
221 B
Plaintext
Executable File

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>ES2015 Example</title>
</head>
<body>
@RenderBody()
@RenderSection("scripts", required: false)
</body>
</html>