Redesign site as bilingual CV

This commit is contained in:
2026-06-07 18:48:42 +09:00
parent ea90cc5d58
commit 6f9cc0bbbb
12 changed files with 784 additions and 467 deletions
+17 -5
View File
@@ -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">
&copy; 2026 - LowLevelGuyCom - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
&copy; 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>