0
0
MyDarling/Pages/Index.cshtml

13 lines
282 B
Plaintext
Raw Normal View History

2023-05-30 07:18:47 +03:00
@page
2023-02-08 07:56:08 +03:00
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
2023-05-30 07:18:47 +03:00
@using MyDarling.Models;
@inject DataContext context;
2023-02-06 21:32:40 +03:00
@{
2023-05-30 07:18:47 +03:00
Layout="_Layout";
2023-02-06 21:32:40 +03:00
}
2023-02-14 07:04:29 +03:00
<partial name="_Navigation" />
<partial name="_Masthead" />
<partial name="_About" />
<partial name="_Projects" />
2023-02-22 08:32:22 +03:00
<partial name="_SignUp" />