Basic MVC application

This commit is contained in:
Unknown
2017-12-21 12:25:05 +00:00
parent 4db6fb0118
commit d97260b7aa
17 changed files with 201 additions and 0 deletions

View File

@ -0,0 +1 @@
<h1>My about page</h1>

View File

@ -0,0 +1 @@
<h1>Tell me more</h1>

View File

@ -0,0 +1 @@
<h1>Ooops, our site crashed</h1>

View File

@ -0,0 +1 @@
<h1>Hello World</h1>

View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8">
<title>Title</title>
</head>
<body>
@RenderBody()
</body>
</html>

View File

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

View File

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