Resume update

This commit is contained in:
2026-09-09 13:22:50 -04:00
parent af48f386e0
commit faf3805960
20 changed files with 24 additions and 684 deletions
+13 -10
View File
@@ -38,18 +38,21 @@
<div class="experience">
@foreach (var experience in WorkExperience.Get().Experiences)
{
<div><b>@experience.Role</b></div>
<div>@experience.Location</div>
<div>@experience.DateRange</div>
<ul>
@foreach (var point in experience.Points)
{
@if (point.IsVisible)
@if (experience.IsVisible)
{
<div><b>@experience.Role</b></div>
<div>@experience.Location</div>
<div>@experience.DateRange</div>
<ul>
@foreach (var point in experience.Points)
{
<li>@point.Description</li>
@if (point.IsVisible)
{
<li>@point.Description</li>
}
}
}
</ul>
</ul>
}
}
</div>
</div>
+1 -1
View File
@@ -1,4 +1,4 @@
<Router AppAssembly="typeof(Program).Assembly" AdditionalAssemblies="new[] { typeof(Client._Imports).Assembly }" NotFoundPage="typeof(Pages.NotFound)">
<Router AppAssembly="typeof(Program).Assembly" NotFoundPage="typeof(Pages.NotFound)">
<Found Context="routeData">
<RouteView RouteData="routeData" DefaultLayout="typeof(Layout.MainLayout)" />
<FocusOnNavigate RouteData="routeData" Selector="h1" />
-1
View File
@@ -7,6 +7,5 @@
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.JSInterop
@using Website
@using Website.Client
@using Website.Components
@using Website.Components.Layout