Recreated webstie in Dotnet
This commit is contained in:
44
DouwcoWebsite.NET/DouwcoWebsite/Pages/Shared/_Layout.cshtml
Normal file
44
DouwcoWebsite.NET/DouwcoWebsite/Pages/Shared/_Layout.cshtml
Normal file
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<title>@ViewData["Title"] - Douwco</title>
|
||||
<script type="importmap"></script>
|
||||
<link rel="stylesheet" href="~/css/layout.css" asp-append-version="true"/>
|
||||
<link rel="stylesheet" href="~/css/structure.css" asp-append-version="true"/>
|
||||
<link rel="stylesheet" href="~/css/douwco.css" asp-append-version="true"/>
|
||||
</head>
|
||||
<body>
|
||||
<header class="@(ViewData["Title"] == "Home" ? "hide_header" : "")">
|
||||
<nav>
|
||||
<div class="vert_container" style="justify-content: space-around">
|
||||
<a class="nav_option" asp-page="/Index"><img class="logo" src="~/img/douwco_logo.png"></a>
|
||||
<a class="nav_option" asp-page="/AboutMe">
|
||||
<img class="icon" src="~/img/icons/user.png" alt="About Me">
|
||||
<p>About <span>Me</span></p>
|
||||
</a>
|
||||
<a class="nav_option" asp-page="/DouwcoApps">
|
||||
<img class="icon" src="~/img/icons/projects_icon.png" alt="Douwco Apps">
|
||||
<p>Douwco <span>Apps</span></p>
|
||||
</a>
|
||||
<a class="nav_option" asp-page="/MyGames">
|
||||
<img class="icon" src="~/img/icons/devicegamepad2.png" alt="My Games">
|
||||
<p>My <span>Games</span></p>
|
||||
</a>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main role="main">
|
||||
@RenderBody()
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="vert_container">
|
||||
<p>© 2026 - douwco.be</p>
|
||||
<p>Made and hosted in 🇪🇺</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user