Rename ES2015Transpilation sample to NodeServicesExamples (because will be adding some more examples here)

This commit is contained in:
SteveSandersonMS
2016-06-07 14:20:43 +01:00
parent c8859abeb7
commit facc2c6d08
18 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,5 @@
Hello
@section scripts {
<script src='js/main.js'></script>
}

View File

@@ -0,0 +1,6 @@
@{
ViewData["Title"] = "Error";
}
<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>

View File

@@ -0,0 +1,11 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>NodeServices Examples</title>
</head>
<body>
@RenderBody()
@RenderSection("scripts", required: false)
</body>
</html>

View File

@@ -0,0 +1,2 @@
@using NodeServicesExamples
@addTagHelper "*, Microsoft.AspNetCore.Mvc.TagHelpers"

View File

@@ -0,0 +1,3 @@
@{
Layout = "_Layout";
}