Redesign site as bilingual CV
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
@{
|
||||
string currentPath = Context.Request.Path.HasValue ? Context.Request.Path.Value! : "/";
|
||||
}
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
@@ -10,9 +13,9 @@
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
|
||||
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3 site-nav">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">LowLevelGuyCom</a>
|
||||
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">Joshua Ferrer</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
|
||||
aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
@@ -23,7 +26,16 @@
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
|
||||
<a class="nav-link text-dark" href="/cv">CV</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" href="@(currentPath)?lang=en">English</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" href="@(currentPath)?lang=ja">日本語</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" href="https://git.low-level-guy.com/josufh" target="_blank" rel="noopener noreferrer">Git</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@@ -38,7 +50,7 @@
|
||||
|
||||
<footer class="border-top footer text-muted">
|
||||
<div class="container">
|
||||
© 2026 - LowLevelGuyCom - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
|
||||
© 2026 - Joshua Ferrer - <a href="/">Home</a> - <a href="/cv">CV</a> - <a href="@(currentPath)?lang=en">English</a> - <a href="@(currentPath)?lang=ja">日本語</a> - <a href="https://git.low-level-guy.com/josufh/low-level-guy.com" target="_blank" rel="noopener noreferrer">Source code</a>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="~/lib/jquery/dist/jquery.min.js"></script>
|
||||
|
||||
Reference in New Issue
Block a user