website/Website/Views/Shared/_Layout.cshtml

39 lines
1.4 KiB
Text

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] | Robware</title>
<link href="/css/style.css" rel="stylesheet" defer/>
</head>
<body>
<header class="header">
<div class="header__blurb">
<a class="header__blurb__title" href="/">Robware</a>
<small class="header__blurb__tagline">Software by Rob</small>
</div>
<div class="header__headshot"></div>
</header>
<div id="content">
<main>
<h1>@ViewData["Title"]</h1>
@RenderBody()
</main>
<nav>
<label for="menu-toggle"><img class="nav-open" src="/images/menu.svg" /></label>
<input type="checkbox" id="menu-toggle" />
<div class="nav-container">
@await Component.InvokeAsync("ProjectNavigation")
@await Component.InvokeAsync("BlogNavigation")
</div>
<div class="strava">
<iframe height='160' width='250' frameborder='0' allowtransparency='true' scrolling='no' src='https://www.strava.com/athletes/8892667/activity-summary/df1a6e21a9947dbe7a9dd36f86b1c17185002d22'></iframe>
<iframe height='454' width='250' frameborder='0' allowtransparency='true' scrolling='no' src='https://www.strava.com/athletes/8892667/latest-rides/df1a6e21a9947dbe7a9dd36f86b1c17185002d22'></iframe>
</div>
</nav>
</div>
<footer>
<div class="logo" onclick="window.location='/account'"></div>
</footer>
</body>
</html>