Initial commit
This commit is contained in:
commit
7703f9d8bb
21 changed files with 433 additions and 0 deletions
28
Website/Views/Shared/_Layout.cshtml
Normal file
28
Website/Views/Shared/_Layout.cshtml
Normal file
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>@ViewData["Title"] - Website</title>
|
||||
|
||||
<environment include="Development">
|
||||
</environment>
|
||||
<environment exclude="Development">
|
||||
</environment>
|
||||
<link rel="stylesheet" href="~/css/site.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
</header>
|
||||
<main>
|
||||
@RenderBody()
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
</footer>
|
||||
|
||||
<script src="~/js/site.js" asp-append-version="true"></script>
|
||||
|
||||
@RenderSection("Scripts", required: false)
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue