Skip to content

Commit

Permalink
Running and updates
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicMaas committed May 20, 2024
1 parent 8c7d621 commit 4912676
Show file tree
Hide file tree
Showing 4 changed files with 110 additions and 13 deletions.
5 changes: 5 additions & 0 deletions src/Website/Pages/Pages/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,9 @@
<p class="card-title"><a href="/pages/pico-filesystem-littlefs">Raspberry Pi Pico File System via LittleFS</a></p>
<p>How to use the built in ROM of the Raspberry Pi Pico as a file system using LittleFS</p>
</div>

<div class="card card-background">
<p class="card-title"><a href="/pages/running">Running</a></p>
<p>Where I keep track of my running race results</p>
</div>
</section>
82 changes: 82 additions & 0 deletions src/Website/Pages/Pages/Running.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
@page
@model Website.Pages.Pages.RunningModel
@{
ViewData["Title"] = "Running";
}

<h1>@ViewData["Title"]</h1>

<h3>Half Marathon Results</h3>

<table class="pure-table pure-table-horizontal pure-table-striped stretch">
<thead>
<tr>
<th scope="col">Date</th>
<th scope="col">Race</th>
<th scope="col">Time</th>
<th scope="col">Pace</th>
</tr>
</thead>
<tbody>
<tr>
<td>19 May 2024</td>
<td>Huntly Half</td>
<td>1:41:25</td>
<td>4:48</td>
</tr>
<tr>
<td>14 April 2024</td>
<td>Long Course Weekend (Half Distance)</td>
<td>1:46:12</td>
<td>5:02</td>
</tr>
<tr>
<td>2 March 2024</td>
<td>Taupo 70.3 (Relay)</td>
<td>1:40:44</td>
<td>4:46</td>
</tr>
<tr>
<td>20 January 2024</td>
<td>Mount Festival of Multisport </td>
<td>1:46:02</td>
<td>5:02</td>
</tr>

<tr>
<td>24 September 2023</td>
<td>Cambridge Half Marathon</td>
<td>1:55:07</td>
<td>5:27</td>
</tr>

<tr>
<td>21 August 2021</td>
<td><em>Virtual</em> </td>
<td>2:04:01</td>
<td>5:52</td>
</tr>
</tbody>
</table>

<br />
<h3>Marathon Results</h3>

<table class="pure-table pure-table-horizontal pure-table-striped stretch">
<thead>
<tr>
<th scope="col">Date</th>
<th scope="col">Race</th>
<th scope="col">Time</th>
<th scope="col">Pace</th>
</tr>
</thead>
<tbody>
<tr>
<td>29 October 2023</td>
<td>Auckland Marathon</td>
<td>04:11:28</td>
<td>5:58</td>
</tr>
</tbody>
</table>
10 changes: 10 additions & 0 deletions src/Website/Pages/Pages/Running.cshtml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using Microsoft.AspNetCore.Mvc.RazorPages;

namespace Website.Pages.Pages;

public class RunningModel : PageModel
{
public void OnGet()
{
}
}
26 changes: 13 additions & 13 deletions src/Website/Website.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,29 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AWSSDK.S3" Version="3.7.307.5" />
<PackageReference Include="AWSSDK.S3" Version="3.7.308.2" />
<PackageReference Include="Azure.Extensions.AspNetCore.Configuration.Secrets" Version="1.3.1" />
<PackageReference Include="Azure.Extensions.AspNetCore.DataProtection.Blobs" Version="1.3.3" />
<PackageReference Include="Azure.Identity" Version="1.10.4" />
<PackageReference Include="Htmx" Version="1.7.0" />
<PackageReference Include="Htmx.TagHelpers" Version="1.7.0" />
<PackageReference Include="Azure.Extensions.AspNetCore.DataProtection.Blobs" Version="1.3.4" />
<PackageReference Include="Azure.Identity" Version="1.11.3" />
<PackageReference Include="Htmx" Version="1.8.0" />
<PackageReference Include="Htmx.TagHelpers" Version="1.8.0" />
<PackageReference Include="LigerShark.WebOptimizer.Core" Version="3.0.405" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="8.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter" Version="8.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.3">
<PackageReference Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="8.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter" Version="8.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.3">
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.20.0" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.20.1" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.2" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.4" />
<PackageReference Include="System.ServiceModel.Syndication" Version="8.0.0" />
</ItemGroup>

Expand Down

0 comments on commit 4912676

Please sign in to comment.