Resume update
This commit is contained in:
@@ -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,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" />
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -13,7 +13,7 @@ public static class Overview
|
||||
IsVisible = true,
|
||||
Order = 1,
|
||||
Description =
|
||||
"Software Developer with a focus on the .NET tech stack.",
|
||||
"In the industry since 2012, while playing a pivotal role in all aspects of the software stack, from prototype to release, and improving applications with patches based on customer feedback and data in production.",
|
||||
LastModified = new DateTime(2025, 9, 8)
|
||||
}
|
||||
]
|
||||
|
||||
@@ -63,6 +63,7 @@ public static class WorkExperience
|
||||
Role = "Fullstack Blazor Developer",
|
||||
Location = "Personal Projects, on various interests",
|
||||
DateRange = "2021, 2026",
|
||||
IsVisible = false,
|
||||
Points =
|
||||
[
|
||||
new Point
|
||||
@@ -87,15 +88,16 @@ public static class WorkExperience
|
||||
},
|
||||
new Experience
|
||||
{
|
||||
Role = "Angular Web Developer",
|
||||
Role = "Angular Website Developer",
|
||||
Location = "CleanCode, Software consultancy on various projects",
|
||||
DateRange = "2020 - 2021",
|
||||
IsVisible = true,
|
||||
Points =
|
||||
[
|
||||
new Point
|
||||
{
|
||||
Description =
|
||||
"Came to the conclusion that I wanted to focus my career in .NET, and left the company to pursue Blazor research and C# opportunities. Unfortunately, Blazor development work is not as popular as one would hope.",
|
||||
"Came to the conclusion that I wanted to focus my career in .NET, and left the company to pursue Blazor research and C# opportunities. Unfortunately, Blazor development work is not popular.",
|
||||
IsVisible = true
|
||||
}
|
||||
]
|
||||
@@ -200,6 +202,8 @@ public static class WorkExperience
|
||||
public string Location { get; set; }
|
||||
public string DateRange { get; set; }
|
||||
|
||||
public bool IsVisible { get; set; } = true;
|
||||
|
||||
public List<Point> Points { get; set; }
|
||||
}
|
||||
|
||||
|
||||
+1
-2
@@ -27,7 +27,6 @@ app.UseAntiforgery();
|
||||
app.MapStaticAssets();
|
||||
app.MapRazorComponents<App>()
|
||||
.AddInteractiveServerRenderMode()
|
||||
.AddInteractiveWebAssemblyRenderMode()
|
||||
.AddAdditionalAssemblies(typeof(Website.Client._Imports).Assembly);
|
||||
.AddInteractiveWebAssemblyRenderMode();
|
||||
|
||||
app.Run();
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
|
||||
<RootNamespace>Website</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Website.Client\Website.Client.csproj" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.6" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user