Add basic blog repo and models to test potential project structure

This commit is contained in:
Robert Marshall 2019-04-14 10:25:52 +01:00
parent 7703f9d8bb
commit 19c3c49f4d
10 changed files with 91 additions and 3 deletions

View file

@ -0,0 +1,8 @@
@using Website.Models;
@model BlogPost;
@{
ViewData["Title"] = "Blog";
}
@Model.Id

View file

@ -1,3 +1,3 @@
@using Website
@using Website.Models
@using Website.ViewModels
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers