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
|
||||
|
||||
Reference in New Issue
Block a user