Created project skeleton:
- Added Razor template and added serilog to it (still not configured)
- Added qrcodejs library to the Razor project
- Added DataAccess library with dapper and npgsql
- Reference DataAccess in WretchedMachines
- Added default dotnet gitignore
9 lines
164 B
Plaintext
9 lines
164 B
Plaintext
@page
|
|
@model PrivacyModel
|
|
@{
|
|
ViewData["Title"] = "Privacy Policy";
|
|
}
|
|
<h1>@ViewData["Title"]</h1>
|
|
|
|
<p>Use this page to detail your site's privacy policy.</p>
|